forked from zaaack/node-systray
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "forked-systray",
"version": "3.0.10",
"description": "systray libray for nodejs (original had bundled binaries)",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"preinstall": "node ./scripts/fetch-prebuilt-helper.js",
"build": "npm run build:lib && npm run doc",
"build:lib": "tsc --outDir lib",
"clean:unix": "del ./lib/**",
"clean:windows": "rd /q /s .\\lib",
"lint": "tslint ./src/** -p ./tsconfig.json",
"test": "cross-env DEBUG=systray* mocha -r ts-node/register ./test/**/*.test.ts",
"doc": "typedoc --theme minimal --out ./docs ./src && touch ./docs/.nojekyll",
"cover": "cross-env NODE_ENV=development nyc ava"
},
"bin": {
"systrayhelper": "./systrayhelper"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssbc/forked-systray.git"
},
"keywords": [
"systray",
"tray",
"gui"
],
"author": "cryptix",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssbc/forked-systray/issues"
},
"homepage": "https://github.com/ssbc/forked-systray#readme",
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/fs-extra": "^4.0.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.7",
"assert": "^1.4.1",
"cross-env": "^5.0.5",
"del-cli": "^1.1.0",
"fs-extra": "^4.0.2",
"mocha": "^5.1.1",
"nyc": "^11.2.1",
"ts-node": "^6.0.2",
"tslint": "^5.11.0",
"tslint-config-standard": "^6.0.1",
"typedoc": "^0.12.0",
"typescript": "^3.0.0"
},
"dependencies": {
"adm-zip": "^0.4.11",
"gunzip-maybe": "^1.4.1",
"pull-ndjson": "^0.1.1",
"pull-notify": "^0.1.1",
"pull-stream": "^3.6.9",
"request": "^2.88.0",
"stream-progressbar": "^1.1.1",
"stream-to-pull-stream": "^1.7.2",
"tar-fs": "^1.16.3"
}
}