forked from stimulus-use/stimulus-use
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "stimulus-use",
"version": "0.41.0",
"description": "A collection of standard controllers and utilities for Stimulus",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"amdName": "StimulusUse",
"author": "@adrienpoly",
"license": "MIT",
"external": "stimulus",
"scripts": {
"start": "webpack-dev-server --mode development --open",
"prebuild": "$npm_execpath run clean",
"build": "tsc -b && microbundle src/index.ts -f umd --globals stimulus=Stimulus",
"test": "NODE_ENV=test karma start",
"test:watch": "NODE_ENV=test karma start --auto-watch --no-single-run",
"test:treeshake": "$npm_execpath run agadoo",
"lint": "prettier --check *.js **/*.js **/*.ts src/**/*.ts spec/**/*.js playground/**/*.js",
"format": "prettier --write *.js **/*.js **/*.ts src/**/*.ts spec/**/*.js playground/**/*.js",
"dev": "tsc -b -w",
"clean": "rimraf dist *.tsbuildinfo coverage",
"doc": "docsify serve ./docs",
"prerelease": "$npm_execpath run build && $npm_execpath run test:treeshake",
"release": "np",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-modules": "^0.1.4",
"agadoo": "^2.0.0",
"autoprefixer": "^10.0.4",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"chai-dom": "^1.8.2",
"css-loader": "^5.0.1",
"cypress": "^8.0.0",
"html2js": "^0.2.0",
"intersection-observer": "^0.11.0",
"karma": "^6.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^1.3.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^4.1.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-typescript": "^5.1.0",
"karma-webpack": "^4.0.2",
"kind-of": "^6.0.3",
"microbundle": "^0.13.0",
"mocha": "^8.1.3",
"np": "^6.5.0",
"postcss": "^8.1.10",
"postcss-loader": "^4.1.0",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"sourcemap": "^0.1.0",
"stimulus": ">=1.1.1 <3",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.1",
"ts-loader": "^8.0.3",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/stimulus-use/stimulus-use"
},
"peerDependencies": {
"stimulus": ">=1.1.1 <3"
},
"dependencies": {
"hotkeys-js": ">=3"
}
}