-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
41 lines (41 loc) · 926 Bytes
/
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
{
"name": "prebuildify",
"version": "6.0.1",
"description": "Create and package prebuilds for native modules",
"main": "index.js",
"dependencies": {
"minimist": "^1.2.5",
"mkdirp-classic": "^0.5.3",
"node-abi": "^3.3.0",
"npm-run-path": "^3.1.0",
"pump": "^3.0.0",
"tar-fs": "^2.1.0"
},
"devDependencies": {
"nan": "^2.14.2",
"standard": "^13.0.1",
"tape": "^4.6.3"
},
"bin": {
"prebuildify": "./bin.js"
},
"files": [
"bin.js",
"index.js"
],
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/prebuild/prebuildify.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prebuild/prebuildify/issues"
},
"homepage": "https://github.com/prebuild/prebuildify"
}