generated from chaoyangnz/node-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
65
66
67
68
69
70
71
{
"name": "node-http-interceptor",
"version": "0.3.0",
"description": "node-http-interceptor",
"author": "Chao Yang <chao@yang.to>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chaoyangnz/node-http-interceptor.git"
},
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">= 12.20 <15"
},
"scripts": {
"start": "node lib/index.js",
"clean": "rimraf coverage build lib tmp",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.release.json && cp README.md lib && cp package*.json lib && cp LICENSE lib",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prerelease": "npm run build",
"release": "npm login && bump --tag && cp package*.json lib && cd lib && npm publish && cd -",
"postrelease": "git push && git push --tags",
"postinstall": ""
},
"publishConfig": {
"access": "public"
},
"files": [
"**/*"
],
"dependencies": {
"debug": "^4.3.1",
"multipart-form-data-parser": "^0.2.1",
"shimmer": "^1.2.1",
"tslib": "~2.1.0",
"uuid": "^8.3.2",
"content-type": "^1.0.4"
},
"devDependencies": {
"@types/jest": "~26.0.20",
"@types/node": "~14.14.31",
"@typescript-eslint/eslint-plugin": "~4.16.1",
"@typescript-eslint/parser": "~4.16.1",
"axios": "^0.21.4",
"copyfiles": "^2.4.1",
"eslint": "~7.21.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-jest": "~24.1.5",
"jest": "~26.6.3",
"lodash": "^4.17.21",
"nock": "^13.3.0",
"prettier": "~2.2.1",
"prompts": "^2.4.1",
"replace-in-file": "^6.2.0",
"rimraf": "~3.0.2",
"shelljs": "^0.8.5",
"ts-jest": "~26.5.2",
"ts-node": "^9.1.1",
"tsutils": "~3.20.0",
"typescript": "~4.2.2",
"version-bump-prompt": "^6.1.0"
},
"volta": {
"node": "12.20.0"
}
}