-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 871 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
27
28
29
30
31
32
33
{
"scripts": {
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"dev": "parcel --no-hmr index.html",
"dist": "trash dist && npm run prettier-production && npm run test && parcel build --experimental-scope-hoisting index.html",
"prettier": "prettier --write {*,**/*}.{css,js,md}",
"prettier-production": "prettier --list-different {*,**/*}.{css,js,md}",
"test": "trash coverage && nyc --all ava"
},
"ava": {
"require": [
"esm"
]
},
"nyc": {
"exclude": [
"**/*.test.js",
"dist",
"coverage"
]
},
"devDependencies": {
"ava": "^2.3.0",
"codecov": "^3.5.0",
"esm": "^3.2.25",
"nyc": "^14.1.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier": "^1.18.2",
"ramda": "^0.26.1",
"trash-cli": "^3.0.0"
}
}