-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "nock-utils",
"version": "0.3.0",
"description": "Utility tools to simplify recording and playing back http requests during tests",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prepublish": "yarn compile",
"compile": "tsc --outDir ./build",
"lint": "ts-standard src",
"pretest": "yarn lint --fix",
"test": "mocha -r ts-node/register src/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comparaonline/nock-utils.git"
},
"keywords": [
"nock"
],
"author": "Lisandro Pavetti <lpavetti@comparaonline.com> (https://github.com/lisandrop)",
"license": "MIT",
"bugs": {
"url": "https://github.com/comparaonline/nock-utils/issues"
},
"homepage": "https://github.com/comparaonline/nock-utils#readme",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.0",
"@types/express": "^4.0.0",
"@types/jsonfile": "^6.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.0.0",
"@types/rest": "^1.3.34",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"express": "^4.21.2",
"mocha": "^11.0.1",
"rest": "^2.0.0",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typescript": "^5.7.3"
},
"dependencies": {
"jsonfile": "^6.1.0",
"nock": "^13.5.6"
}
}