-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
50
51
{
"name": "crawling-puppet",
"version": "0.1.0",
"description": "Crawling Puppet",
"license": "MIT",
"author": "François Lajoie",
"contributors": [],
"scripts": {
"lint": "eslint . --fix --ext .ts,.tsx -c .eslintrc.js",
"tests": "jest",
"tests:watch": "jest --watch",
"tests:coverage": "jest --coverage --collectCoverageFrom=src/**/*.ts",
"tests:clearcache": "jest --clearCache"
},
"dependencies": {},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/es6-promisify": "^6.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^10.17.44",
"@types/puppeteer": "^1.20.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"command-line-args": "^5.1.1",
"es6-promisify": "^6.1.1",
"ora": "^5.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"jest-each": "^26.6.2",
"jest-junit": "^12.0.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.4"
},
"jest": {
"coverageReporters": [
"text",
"lcov",
"jest-junit"
]
},
"jest-junit": {
"suiteName": "CrawlingPuppet",
"outputDirectory": "coverage",
"usePathForSuiteName": "true"
}
}