forked from matdurand/nock-uri-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.46 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": "nock-uri-template",
"version": "0.1.9",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"build": "bili",
"prepublishOnly": "npm run build",
"release": "standard-version"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/matdurand/nock-uri-template.git"
},
"author": "Mathieu Durand",
"license": "MIT",
"dependencies": {
"@types/nock": "^10.0.3",
"nock": "^10.0.6",
"uri-templates": "^0.2.0"
},
"devDependencies": {
"@types/jest": "24.0.11",
"@types/lodash": "^4.14.136",
"axios": "^0.19.0",
"bili": "4.5.2",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"husky": "3.0.3",
"jest": "24.5.0",
"lint-staged": "9.2.1",
"lodash": "^4.17.15",
"prettier": "1.15.2",
"rollup-plugin-typescript2": "0.22.1",
"semantic-release": "^15.13.20",
"standard-version": "^7.0.0",
"ts-jest": "24.0.0",
"typescript": "3.5.3"
},
"browserslist": [
"node 8"
],
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write",
"git add"
]
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}