-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.6 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
{
"name": "dmonitor",
"version": "0.5.1",
"description": "The monitor of the computer.",
"main": "main.js",
"scripts": {
"start": "electron .",
"start:debug": "NODE_ENV=development electron .",
"format": "npx standard --fix",
"test": "npx mocha test",
"coverage": "nyc --reporter=lcov npm test",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"commit": "cz"
},
"standard": {
"env": [
"mocha"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/reply2future/dmonitor.git"
},
"keywords": [
"monitor",
"electron",
"nodejs"
],
"author": "[email protected]",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/reply2future/dmonitor/issues"
},
"homepage": "https://github.com/reply2future/dmonitor#readme",
"build": {
"appId": "com.reply2future.dmonitor",
"mac": {
"category": "utilities",
"icon": "asserts/icon.png",
"extendInfo": {
"LSUIElement": 1
}
}
},
"devDependencies": {
"chai": "^4.3.6",
"cz-conventional-changelog": "^3.3.0",
"electron": "^19.0.1",
"electron-builder": "^23.0.3",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^14.0.0",
"standard": "^17.0.0"
},
"dependencies": {
"@reply2future/pidusage": "^3.1.0",
"electron-log": "^4.4.7",
"electron-store": "^8.0.2",
"pidtree": "^0.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}