-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "jest-nock-back",
"version": "0.2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jonjaques/jest-nock-back.git"
},
"author": "Jon Jaques <jaquers@gmail.com>",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/nock": "^10.0.3",
"@types/node": "^12.6.5",
"axios": "^0.19.0",
"jest": "^24.8.0",
"nock": ">=10",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "yarn unit && yarn e2e",
"unit": "jest src",
"e2e": "jest -c test/jest.config.js test/*",
"e2e:debug": "node --inspect-brk node_modules/.bin/jest -i -c test/jest.config.js test/*",
"prepare": "yarn test && yarn build"
},
"peerDependencies": {
"jest": ">=24",
"nock": ">=10"
},
"dependencies": {
"lodash": "^4.17.14"
},
"files": [
"lib/index.js",
"lib/index.d.ts"
]
}