-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.52 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
{
"name": "route-param-alias",
"version": "0.0.0",
"description": "Express.js middleware to substitute route parameters with other values",
"main": "index.js",
"scripts": {
"test": "npx jest --coverage",
"lint": "npx standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aposhian/route-param-alias.git"
},
"keywords": [
"express"
],
"author": "Adam Aposhian",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aposhian/route-param-alias/issues"
},
"homepage": "https://github.com/Aposhian/route-param-alias#readme",
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"express": "^4.17.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"semantic-release": "^17.1.1",
"standard": "^14.3.4",
"supertest": "^4.0.2"
},
"standard": {
"env": [
"jest"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-push": "npm test"
}
},
"release": {
"plugins": [
"@semantic-release/npm"
]
},
"files": [
"index.js",
"CHANGELOG.md",
"package.json",
"package-lock.json"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"jsonwebtoken": "^8.5.1"
}
}