-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.4 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
{
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@marko/babel-utils": "5.1.1",
"@marko/compiler": "^5.1.3",
"@marko/prettyprint": "^2.2.3",
"@marko/test": "^8.0.6",
"@marko/testing-library": "^4.0.3",
"chai": "^4.2.0",
"chai-dom": "^1.8.2",
"cheerio": "^1.0.0-rc.5",
"chromedriver": "^122.0.4",
"codecov": "^3.8.1",
"cross-env": "^7.0.3",
"husky": "^4.3.8",
"lasso": "^3.4.0",
"lasso-marko": "^3.0.1",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"marko": "^5.1.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0"
},
"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": "cross-env NODE_OPTIONS='--enable-source-maps' marko-test",
"test:ci": "cross-env NODE_ENV=test nyc --reporter=text marko-test && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test:report": "cross-env NODE_ENV=test nyc --reporter=html npm test && open ./coverage/index.html"
}
}