forked from cwrc/CWRC-GitServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.04 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
88
89
{
"name": "cwrc-server",
"version": "0.0.0",
"description": "node.js Express server acting as a proxy between cwrc-git-dialogs and the GitHub API",
"keywords": [
"xml",
"rdf",
"editor",
"github"
],
"homepage": "https://github.com/cwrc/CWRC-GitServer",
"bugs": {
"url": "https://github.com/cwrc/CWRC-GitWriter/issues"
},
"license": "GPL-2.0",
"contributors": [
"James Chartrand <[email protected]>",
"Andrew MacDonald <[email protected]>",
"Luciano Frizzera <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/cwrc/CWRC-GitServer.git"
},
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test:debug": "mocha spec -w",
"test": "nyc mocha spec",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"check-coverage": "nyc check-coverage",
"docs": "jsdoc2md routes/github.js > API.md",
"cm": "git-cz"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cwrcgit": "^5.0.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"got": "^10.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codecov": "^3.6.5",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.1.0",
"nock": "^12.0.2",
"nodemon": "^2.0.2",
"nyc": "^15.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run check-coverage"
}
},
"nyc": {
"check-coverage": true,
"per-file": true,
"exclude": [
"coverage/**",
"fixturesAndMocks/**",
"node_modules/**"
],
"include": [
"spec/**"
],
"lines": 5,
"statements": 5,
"functions": 5,
"branches": 5,
"reporter": [
"lcov"
]
}
}