-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "@nwutils/updater",
"description": "Update NW.js applications",
"keywords": [
"NW.js",
"node-webkit",
"update"
],
"version": "0.3.5",
"author": {
"name": "Eldar Djafarov",
"url": "https://github.com/edjafarov"
},
"maintainers": [
{
"name": "Ayushman Chhabra",
"url": "https://ayushmanchhabra.com/"
}
],
"contributors": [
{
"name": "The @nwutils/updater Authors",
"url": "https://github.com/nwutils/nw-updater/graphs/contributors"
}
],
"main": "./app/updater.js",
"types": "./index.d.ts",
"files": [
"index.d.ts",
"LICENSE",
"app/updater.js"
],
"homepage": "https://github.com/nwutils/nw-updater",
"repository": {
"type": "git",
"url": "https://github.com/nwutils/nw-updater.git"
},
"scripts": {
"grunt": "grunt",
"test": "grunt clean mochaTest",
"types": "npx -p typescript tsc app/updater.js --declaration --allowJs --emitDeclarationOnly --outFile ./index.d.ts"
},
"dependencies": {
"axios": "^1.7.2",
"del": "^7.1.0",
"ncp": "^2.0.0",
"semver": "^7.6.2"
},
"devDependencies": {
"chai": "^5.1.1",
"express": "^4.19.2",
"get-port": "^7.1.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-mocha-test": "^0.13.3",
"grunt-nw-builder": "^4.7.4",
"mocha": "^10.4.0"
}
}