-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "css-coverage",
"version": "2.1.0",
"scripts": {
"lint": "standard --fix",
"pretest": "sass --source-map ./test/test.scss ./test/test.css",
"test": "npm run-script test:unit && npm run-script test:cli",
"test:unit": "jest",
"test:cli": "./bin/css-coverage.js --html ./test/test.html --css ./test/test.css --lcov ./test/test.lcov --ignore-declarations 'move-to,move-foobar'",
"test:debug": "node --inspect-brk ./bin/css-coverage.js --html ./test/test.html --css ./test/test.css --lcov ./test/test.lcov --ignore-declarations 'move-to,move-foobar'",
"posttest": "npm run-script lint"
},
"dependencies": {
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"commander": "3.0.1",
"css-tree": "1.0.0-alpha25",
"dotenv": "^8.0.0",
"puppeteer": "^2.0.0",
"sizzle": "2.3.4",
"source-map": "0.7.3"
},
"bin": {
"css-coverage": "bin/css-coverage.js"
},
"keywords": [
"css",
"coverage",
"unit",
"test",
"source-map"
],
"main": "index.js",
"repository": "https://github.com/openstax/css-coverage.js.git",
"author": "Philip Schatz <[email protected]>",
"license": "MIT",
"devDependencies": {
"jest": "^24.7.1",
"sass": "^1.17.0",
"standard": "^13.0.1",
"tmp": "^0.1.0"
}
}