-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 972 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 972 Bytes
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
{
"scripts": {
"test": "wireit",
"build": "wireit"
},
"library_repo": "dyo/dyo",
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "9.2.1",
"babel-plugin-transform-react-jsx": "6.24.1",
"chai": "4.5.0",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-firefox-launcher": "2.1.3",
"karma-sourcemap-loader": "0.4.0",
"karma-webpack": "5.0.1",
"webpack": "5.104.1"
},
"dependencies": {
"dio.js": "9.1.1"
},
"wireit": {
"test": {
"dependencies": [
"../..:karma-plugins"
],
"files": [
".babelrc",
"karma.conf.js",
"tests.webpack.js",
"src",
"meta"
],
"output": [
"results"
],
"command": "cross-env LIBRARY_NAME=dio.js karma start || echo ''"
},
"build": {
"dependencies": [
"test"
]
}
}
}