-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.37 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": "nock-record",
"description": "Small wrapper around Nock Back, with improved ergonomics.",
"version": "0.3.9",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/edorivai/nock-record",
"repository": "github:edorivai/nock-record",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testURL": "http://localhost/"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"test": "jest test",
"test-examples": "jest examples"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser typescript --write"
]
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/nock": "^11.1.0",
"@types/node": "^12.12.25",
"@types/stack-trace": "^0.0.29",
"@types/superagent": "^4.1.10",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"superagent": "^6.1.0",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"nock": "11 - 13"
},
"dependencies": {
"stack-trace": "^0.0.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}