-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.51 KB
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
{
"name": "github-similar-server",
"version": "1.2.1",
"main": "index.js",
"description": "A github similar static server with a markdown renderer.",
"author": "imcuttle",
"scripts": {
"test": "jest",
"prepublishOnly": "npm test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"version": "npm run changelog"
},
"keywords": [
"github-similar-server"
],
"bin": "bin.js",
"license": "MIT",
"repository": "imcuttle/github-similar-server",
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@moyuyc/husky": "^1.1.1",
"@types/jest": "^22.2.3",
"conventional-changelog-cli": "^2.0.5",
"jest": "^23.1.0",
"supertest": "^3.1.0"
},
"dependencies": {
"debug": "^3.1.0",
"ecstatic": "^3.2.0",
"express": "^4.16.3",
"lodash.template": "^4.4.0",
"minimist": "^1.2.0",
"morgan": "^1.9.0",
"pify": "^3.0.0",
"rehype-raw": "^2.0.0",
"rehype-stringify": "^3.0.0",
"remark": "^9.0.0",
"remark-preset-gfm": "^1.0.1",
"remark-rehype": "^3.0.0",
"to-vfile": "^4.0.0",
"vfile-reporter": "^5.0.0",
"yaml-front-matter": "^4.1.0"
},
"jest": {
"testMatch": [
"**/__test{s,}__/*.(spec|test).{t,j}s{x,}"
]
},
"husky": {
"installType": "append",
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}