-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) Β· 2.26 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
{
"name": "stimulus-conductor",
"version": "1.2.0",
"description": "An optionated Stimulus Controller to easily manage parent/children controllers",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "src/index.js",
"author": "@adrienpoly",
"license": "MIT",
"external": "stimulus",
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "rollup -c",
"dev": "rollup -wc",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "yarn test --auto-watch --no-single-run",
"test:browser": "yarn test --auto-watch --no-single-run --browsers Chrome",
"codecov": "codecov",
"release": "np"
},
"peerDependencies": {
"stimulus": ">=1.1.1 <3"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-classes": "^7.3.4",
"@babel/preset-env": "^7.10.3",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"chai-dom": "^1.8.2",
"codecov": "^3.7.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"karma": "^5.1.0",
"karma-babel-preprocessor": "^8.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^8.0.1",
"np": "^6.2.4",
"npm-run-all": "^4.1.5",
"rollup": "^2.18.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"size-plugin": "^2.0.1",
"stimulus": ">=1.1.1 <3",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev": "^1.1.1",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/adrienpoly/stimulus-conductor.git"
}
}