forked from marko-js/tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.1 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
{
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/config-lerna-scopes": "^7.5.1",
"cheerio": "^1.0.0-rc.2",
"codecov": "^3.2.0",
"cross-env": "^5.2.0",
"husky": "^1.3.1",
"lasso": "^3.2.9",
"lasso-marko": "^2.4.6",
"lerna": "^3.11.1",
"lint-staged": "^8.1.3",
"marko": "^4.15.0",
"marko-cli": "^6.0.3",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"prettier": "^1.16.4",
"sinon": "^7.2.3"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"*.marko": [
"marko prettyprint",
"git add"
]
},
"scripts": {
"format": "prettier \"**/*.{json,md,js}\" --write && marko prettyprint ./tags",
"postinstall": "lerna bootstrap --hoist",
"publish": "lerna publish",
"test": "marko test",
"test:report": "cross-env NODE_ENV=test nyc --reporter=html npm test && open ./coverage/index.html",
"test:ci": "cross-env NODE_ENV=test nyc --reporter=text npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
}
}