-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.6 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
52
53
54
55
56
57
58
59
{
"name": "no-skipped-tests",
"description": "Analyzes your project for focused or ignored tests",
"version": "2.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dominique-mueller/no-skipped-tests.git"
},
"keywords": [
"test",
"skip",
"fdescribe",
"xdescribe",
"fit",
"xit",
"jasmine",
"karma",
"angular",
"typescript",
"javascript"
],
"main": "index.js",
"types": "index.d.ts",
"bin": {
"no-skipped-tests": "bin/no-skipped-tests.js"
},
"scripts": {
"build": "rimraf -r dist && tsc -p tsconfig.json && copyfiles \"bin/**\" \"docs/**\" package.json CHANGELOG.md LICENSE README.MD dist",
"lint": "eslint src/**/*.ts index.ts --max-warnings 0",
"lint:fix": "eslint src/**/*.ts index.ts --max-warnings 0 --fix",
"test:upload-coverage": "codecov -f coverage/coverage-final.json",
"test": "jest --config jest.config.json --runInBand --no-cache"
},
"dependencies": {
"chalk": "4.1.x",
"glob": "7.1.x",
"ora": "5.3.x",
"typescript": "4.1.x"
},
"devDependencies": {
"@types/glob": "7.1.x",
"@types/jest": "26.0.x",
"@types/node": "14.14.x",
"@typescript-eslint/eslint-plugin": "4.14.x",
"@typescript-eslint/parser": "4.14.x",
"codecov": "3.8.x",
"copyfiles": "2.4.x",
"eslint-config-prettier": "7.2.x",
"eslint-plugin-import": "2.22.x",
"eslint-plugin-prettier": "3.3.x",
"eslint-plugin-simple-import-sort": "7.0.x",
"eslint": "7.21.x",
"jest": "26.6.x",
"prettier": "2.2.x",
"rimraf": "3.0.x",
"ts-jest": "26.5.x"
}
}