-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
40
41
42
43
44
45
46
{
"name": "wsda",
"version": "0.0.1",
"description": "Web Sites Dynamic Analyzer (wsda)",
"main": "analysis.js",
"dependencies": {
"bluebird": "^3.5.1",
"lighthouse": "4.2.0"
},
"devDependencies": {
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"jest-coverage-badges": "^1.0.0",
"npm-run-all": "^4.1.3"
},
"scripts": {
"test-windows": "jest --coverage & jest-coverage-badges & copy coverage\\badge-lines.svg badge-lines.svg",
"test-linux": "jest --coverage; jest-coverage-badges; cp coverage/badge-lines.svg ."
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/coverage/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclopt/wsda.git"
},
"author": "Cyclopt",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclopt/wsda/issues"
},
"homepage": "https://github.com/cyclopt/wsda#readme"
}