This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.69 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
{
"name": "gwn",
"description": "Like GitWeb, but Node",
"version": "0.6.8",
"author": {
"email": "zac@zacanger.com",
"name": "Zac Anger",
"url": "https://zacanger.com"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/zacanger"
},
"license": "LGPL-3.0",
"main": "index.js",
"bin": "./index.js",
"scripts": {
"_test": "npm run test:lint && npm run test:tape",
"dev": "nodemon index.js",
"preversion": "sortpack && npm t",
"start": "node index.js",
"test": "npm run test:lint",
"test:lint": "eslint -c .eslintrc.json lib *.js",
"test:tape": "tape test.js"
},
"homepage": "https://github.com/zacanger/gwn#readme",
"repository": {
"type": "git",
"url": "https://github.com/zacanger/gwn.git"
},
"bugs": "https://github.com/zacanger/gwn/issues",
"keywords": [
"cgit",
"git",
"gitweb",
"ui",
"web"
],
"dependencies": {
"compression": "1.7.4",
"express": "4.17.1",
"fetchyeah": "3.0.11",
"helmet": "3.22.0",
"is-docker": "2.0.0",
"is-program-installed": "2.0.6",
"isomorphic-fetch": "2.2.1",
"lodash": "4.17.21",
"minimist": "1.2.6",
"nodemon": "2.0.2",
"pug": "3.0.1",
"url-parse": "1.5.9",
"zeelib": "11.0.12"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-plugin-zacanger": "1.1.3",
"husky": "4.2.3",
"lint-staged": "10.0.9",
"prettier": "2.0.2",
"sortpack": "2.1.3",
"tape": "4.13.2"
},
"engines": {
"node": ">=10.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"package.json": [
"sortpack"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}