-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "jest-runner-newman",
"version": "0.0.0-development",
"description": "A Jest runner for Postman's Newman CLI tool",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"server": "node examples/app",
"test": "is-ci 'test:ci' 'test:dev'",
"test:ci": "start-server-and-test server 1337 test:once",
"test:dev": "start-server-and-test server 1337 test:watch",
"test:once": "jest",
"test:watch": "npm run test:once -- --watch",
"semantic-release": "semantic-release"
},
"dependencies": {
"create-jest-runner": "0.4.1"
},
"devDependencies": {
"commitizen": "3.0.5",
"conventional-changelog": "3.0.5",
"conventional-changelog-cli": "2.0.11",
"cz-conventional-changelog": "2.1.0",
"doctoc": "1.4.0",
"eslint": "5.11.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-prettier": "3.0.0",
"husky": "1.2.1",
"is-ci-cli": "1.1.1",
"jest": "23.6.0",
"jest-runner-eslint": "0.7.1",
"lint-staged": "8.1.0",
"newman": "4.2.3",
"prettier": "1.15.3",
"semantic-release": "^15.13.1",
"start-server-and-test": "1.7.11"
},
"peerDependencies": {
"jest": ">=22.0.0",
"newman": "*"
},
"keywords": [
"jest",
"jest-runner",
"postman",
"newman"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fixate/jest-runner-newman.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}