forked from marko-js/marko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.76 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
{
"name": "marko",
"version": "4.0.0",
"private": true,
"scripts": {
"build": "node scripts/build.js",
"build-src": "node scripts/build.js src",
"postinstall": "cd packages/marko && npm i",
"release": "npm run build-src && (cd ./packages/marko && standard-version && git push --follow-tags && npm publish)",
"test": "mocha --timeout 10000 ./packages/marko/test/*/*.test.js",
"test-ci": "npm run lint && npm run check-format && npm run test-generate-coverage",
"test-coverage": "npm run test-generate-coverage && nyc report --reporter=html && opn ./coverage/index.html",
"test-generate-coverage": "nyc -asc npm test",
"lint": "eslint .",
"format": "prettier \"**/*.{js,json,css,md}\" --write",
"check-format": "prettier \"**/*.{js,json,css,md}\" -l",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-minprops": "^2.0.1",
"benchmark": "^2.1.1",
"codecov": "^3.0.2",
"eslint": "^4.11.0",
"eslint-config-prettier": "^2.9.0",
"husky": "^4.2.3",
"lint-staged": "^7.0.0",
"micromatch": "^3.0.4",
"mocha": "^5.0.1",
"nyc": "^13.0.0",
"prettier": "^1.13.5",
"shelljs": "^0.7.7",
"standard-version": "^7.1.0"
},
"nyc": {
"exclude": [
"**/benchmark/**",
"**/scripts/**",
"**/coverage/**",
"**/test/**",
"**/test-dist/**",
"**/test-generated/**",
"**/dist/**"
]
}
}