-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "node-offline-api",
"description": "Node API Document Creator",
"version": "0.0.0-development",
"main": "app/index.js",
"scripts": {
"start": "node app/index.js",
"test": "istanbul cover _mocha -- -R spec test/module.test.js",
"precommit-old": "npm test && npm run check-coverage",
"commit-old": "git-cz",
"check-coverage": "istanbul check-coverage --statements 80 --branches 35 --functions 80 --lines 85",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"directories": {
"app": "app"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"fs-extra": "^8.1.0",
"js-yaml": "^3.13.1",
"jsdoc": "^3.6.3",
"marked": "^4.0.10"
},
"devDependencies": {
"chai": "^4.2.0",
"istanbul": "0.4.5",
"mocha": "^6.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/3DEsprit/node-offline-api.git"
},
"author": "dbrown",
"license": "MIT",
"bugs": {
"url": "https://github.com/3DEsprit/node-offline-api/issues"
},
"homepage": "https://github.com/3DEsprit/node-offline-api#readme"
}