-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "jest-shell-matchers",
"version": "1.0.2",
"description": "Test shell scripts while mocking specific commands",
"author": "Matthew Armstrong <raingerber2@gmail.com>",
"main": "index.js",
"engines": {
"node": ">=8"
},
"license": "MIT",
"scripts": {
"format": "prettier-standard '**/*.js'",
"test": "jest --coverage",
"precommit": "npm run format && npm run test"
},
"keywords": [
"spawn",
"shell",
"bash",
"mock",
"test",
"testing",
"expect",
"assertion",
"jest"
],
"dependencies": {
"spawn-with-mocks": "^1.0.0"
},
"peerDependencies": {
"jest": "^23.0.0"
},
"devDependencies": {
"jest": "^23.0.0",
"prettier-standard": "^8.0.1"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/matchers-test-utils"
]
},
"repository": {
"type": "git",
"url": "https://github.com/raingerber/jest-shell-matchers.git"
},
"bugs": {
"url": "https://github.com/raingerber/jest-shell-matchers/issues"
}
}