-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
57 lines (57 loc) · 1.13 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
{
"name": "nw",
"version": "0.94.0",
"description": "An installer for NW.js",
"repository": {
"type": "git",
"url": "git://github.com/nwjs/npm-installer.git"
},
"type": "module",
"main": "src/index.js",
"bin": {
"nw": "src/cli.js"
},
"scripts": {
"postinstall": "node src/postinstall.js",
"test": "vitest run",
"test:coverage": "vitest --coverage.enabled true"
},
"files": [
"src"
],
"author": {
"name": "Kyle Robinson Young",
"url": "https://github.com/shama"
},
"contributors": [
{
"name": "nwjs/npm-installer Contributors",
"url": "https://github.com/nwjs/npm-installer/graphs/contributors"
}
],
"license": "MIT",
"dependencies": {
"axios": "^1.7.9",
"commander": "^12.1.0",
"semver": "^7.6.3",
"tar": "^7.4.3",
"yauzl-promise": "^4.0.0"
},
"keywords": [
"nw",
"nw.js",
"nwjs",
"chromium",
"io.js",
"node-webkit",
"webkit",
"installer",
"desktop",
"application"
],
"devDependencies": {
"@vitest/coverage-v8": "^2.1.8",
"selenium-webdriver": "^4.27.0",
"vitest": "^2.0.2"
}
}