-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "@slimio/addon-manager",
"version": "0.1.0",
"description": "Electron interface for addon management",
"main": "index.js",
"scripts": {
"start": "electron .",
"prepublishOnly": "pkg-ok",
"test": "ava --verbose",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "nyc npm test",
"report": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/Addons-Manager.git"
},
"keywords": [],
"author": "SlimIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlimIO/Addons-Manager/issues"
},
"homepage": "https://github.com/SlimIO/Addons-Manager#readme",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^2.0.4",
"electron": "^4.1.4",
"ava": "^1.4.1",
"eslint": "^5.16.0",
"husky": "^1.3.1",
"jsdoc": "^3.5.5",
"pkg-ok": "^2.3.1",
"nyc": "^13.3.0"
},
"engines": {
"node": ">=10"
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 98,
"statements": 98,
"functions": 98,
"branches": 90
}
}