forked from zaaack/node-systray
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 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
{
"name": "systray2",
"version": "2.1.4",
"description": "An systray libray for nodejs, more updated than the original systray",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "tslint ./src/** --type-check -p ./tsconfig.json",
"test": "cross-env DEBUG=systray* mocha -r ts-node/register ./*.test.ts",
"cover": "cross-env NODE_ENV=development nyc ava",
"preversion": "npm run build"
},
"engines": {
"node": ">=4.0.0"
},
"pre-commit": [],
"repository": {
"type": "git",
"url": "git+https://github.com/felixhao28/node-systray.git"
},
"keywords": [
"systray",
"tray",
"gui"
],
"author": "felixhao28 & zaaack",
"license": "MIT",
"bugs": {
"url": "https://github.com/felixhao28/node-systray/issues"
},
"homepage": "https://github.com/felixhao28/node-systray#readme",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"cross-env": "^7.0.3",
"del-cli": "^4.0.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.3.0",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"debug": "^4.3.3",
"fs-extra": "^10.0.0"
}
}