-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 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
60
61
62
63
64
65
66
{
"name": "jest-watch-suspend",
"version": "0.0.0-development",
"description": "Suspend watch mode",
"keywords": [
"jest",
"jest-watch-plugins",
"testing",
"tooling"
],
"homepage": "https://github.com/unional/jest-watch-suspend",
"bugs": {
"url": "https://github.com/unional/jest-watch-suspend/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unional/jest-watch-suspend.git"
},
"license": "MIT",
"author": {
"name": "Homa Wong (unional)",
"email": "homawong@gmail.com"
},
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf lib",
"codecov": "codecov",
"coverage": "jest --coverage",
"dc": "yarn depcheck",
"depcheck": "dependency-check . --unused --no-dev -i jest && dependency-check . --missing --no-dev",
"lint": "eslint --ext=js,ts .",
"nuke": "yarn clean && rimraf node_modules",
"semantic-release": "semantic-release",
"test": "jest",
"verify": "yarn lint && yarn build && yarn dc && jest --coverage",
"watch": "jest --watch"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"chalk": "^3.0.0",
"unpartial": "^0.6.3"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@unional/devpkg-node": "^1.4.2",
"assertron": "^7.1.2",
"codecov": "^3.6.1",
"commitlint-circle": "^1.0.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"semantic-release": "^15.13.31"
},
"peerDependencies": {
"jest": ">=23"
}
}