-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.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
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"conventional-changelog-cli": "^2.1.0",
"jsdoc": "^3.6.6",
"lerna": "^3.22.1",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"standard": "^14.3.4"
},
"scripts": {
"babel": "lerna exec --parallel -- babel src -d lib --copy-files",
"babel-mjs": "lerna exec --parallel -- babel src -d lib-mjs --copy-files --env-name mjs",
"lint": "standard",
"test": "node test/run-tests.js",
"lerna": "lerna exec --no-bail --stream --",
"coverage": "npm run coverage:test && npm run coverage:report",
"coverage:test": "npm run lerna -- NODE_ENV=coverage nyc npm test -- -c",
"coverage:report": "npm run lerna -- nyc report --reporter=text-lcov \">\" coverage.lcov",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"docs": "jsdoc -c .jsdoc.js",
"preversion": "npm run lint && npm test",
"version": "npm run changelog",
"postversion": "npm run babel && npm run babel-mjs"
},
"standard": {
"parser": "babel-eslint"
}
}