-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
46 lines (46 loc) · 1.11 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": "binwrap",
"version": "0.2.3",
"description": "Package cross-platform binaries",
"main": "index.js",
"scripts": {
"test": "(cd test_app && ./build_packages.sh && npm install ../) && mocha && eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/avh4/binwrap.git"
},
"author": "Aaron VonderHaar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/avh4/binwrap/issues"
},
"homepage": "https://github.com/avh4/binwrap#readme",
"files": [
"install.js",
"prepare.js",
"test.js",
"binstall.js",
"binstub.js.mustache",
"bin/binwrap-install",
"bin/binwrap-prepare",
"bin/binwrap-test"
],
"bin": {
"binwrap-install": "bin/binwrap-install",
"binwrap-prepare": "bin/binwrap-prepare",
"binwrap-test": "bin/binwrap-test"
},
"devDependencies": {
"chai": "^4.3.0",
"child-process-promise": "^2.2.1",
"eslint": "^7.19.0",
"http-server": "^0.12.3",
"mocha": "^8.2.1"
},
"dependencies": {
"request": "^2.88.0",
"tar": "^6.1.0",
"unzip-stream": "^0.3.1"
}
}