forked from nwutils/nw-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "node-webkit-updater",
"description": "node-webkit autoupdate library",
"keywords": [
"node-webkit",
"update",
"autoupdate"
],
"version": "0.3.4",
"author": "Eldar Djafarov <[email protected]>",
"contributors": [
"Eldar Djafarov <[email protected]>",
"Adam Lynch <[email protected]>",
"Klemen Kastelic <[email protected]>"
],
"main": "./app/updater.js",
"repository": {
"type": "git",
"url": "https://github.com/edjafarov/node-webkit-updater.git"
},
"bugs": {
"url": "https://github.com/edjafarov/node-webkit-updater/issues"
},
"homepage": "https://github.com/edjafarov/node-webkit-updater",
"scripts": {
"deps": "npm i && cd app && npm i && cd ..",
"test": "node node_modules/grunt-cli/bin/grunt clean mochaTest"
},
"dependencies": {
"fs-extra": "^4.0.2"
},
"devDependencies": {
"chai": "^1.9.1",
"express": "^4.3.1",
"get-port": "^0.1.0",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-compress": "^0.9.1",
"grunt-contrib-copy": "^0.5.0",
"grunt-jsdoc-to-markdown": "~0.4.1",
"grunt-mocha-test": "^0.10.2",
"grunt-node-webkit-builder": "~0.2.2",
"mocha": "^1.19.0"
}
}