-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 989 Bytes
/
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
{
"name": "datepicker-interface",
"version": "0.0.2",
"private": true,
"scripts": {
"clean": "rm -rf target && rm -rf dist",
"build": "npm run test && npm run clean && cross-env NODE_ENV=production rollup -c && node prepare-package.js",
"test:ui": "npm-run-all -r -p _testbuild _testrun",
"test": "npm-run-all -r -p _testbuild \"_testrun -- --console --once\"",
"_testbuild": "cross-env NODE_ENV=test nollup -c",
"_testrun": "wait-on http://localhost:8080/tests.js && mocha-istanbul-ui --watch http://localhost:8080/tests.js"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"mocha-istanbul-ui": "^0.4.0",
"nollup": "^0.10.6",
"npm-run-all": "^4.1.5",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"sinon": "^9.0.0",
"wait-on": "^4.0.1"
}
}