-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
87 lines (87 loc) · 2.05 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "loppo",
"version": "0.6.26",
"description": "an extremely easy static site generator of markdown documents",
"main": "index.js",
"scripts": {
"lint": "eslint './**/*.@(js|jsx)'",
"test": "tape test/*.test.js test/**/*.test.js | tap-spec",
"commit": "git cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1"
},
"bin": {
"loppo": "./bin/cmd.js"
},
"keywords": [
"static",
"document"
],
"homepage": "https://github.com/ruanyf/loppo",
"repository": {
"type": "git",
"url": "https://github.com/ruanyf/loppo.git"
},
"author": "Ruan Yifeng",
"license": "GPL-3.0",
"dependencies": {
"connect": "^3.7.0",
"debug": "^4.3.2",
"fs-extra": "11.x",
"html-minifier": "4.x",
"html-to-text": "9.x",
"js-yaml": "4.x",
"lodash": "^4.17.21",
"log-symbols": "4.x",
"log4js": "^6.3.0",
"loppo-theme-oceandeep": "2.x",
"promptly": "^3.2.0",
"serve-static": "^1.14.1",
"tarim": "^0.1.4",
"turpan": "^0.4.0",
"walk-sync": "3.x",
"wordcount": "^1.1.1",
"yargs": "17.x"
},
"devDependencies": {
"@commitlint/cli": "18.x",
"@commitlint/config-conventional": "18.x",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "4.x",
"cz-conventional-changelog": "3.x",
"eslint": "8.x",
"eslint-config-airbnb": "19.x",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"ghooks": "^2.0.4",
"husky": "^4.3.8",
"tap-spec": "^5.0.0",
"tape": "^5.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}