-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.65 KB
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
63
64
65
66
{
"name": "packem",
"version": "0.2.0",
"description": "",
"main": "./src/index.js",
"bin": "./scripts/cli.js",
"scripts": {
"install": "npm run build",
"build": "node ./scripts/build.js",
"package": "node-pre-gyp package",
"upload-binary": "node-pre-gyp package && node-pre-gyp-github publish --release",
"postinstall": "opencollective-postinstall || true"
},
"binary": {
"module_name": "index",
"host": "https://github.com/packem/packem/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./bin",
"pkg_path": "."
},
"files": [
"bin/index.node",
"scripts",
"src",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/packem/packem.git"
},
"author": "bukharim96 <bukharim96@gmail.com>",
"contributors": [
{
"name": "bukharim96",
"email": "bukharim96@gmail.com"
},
{
"name": "undefinedbuddy",
"email": "alimohamuda80@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/packem/packem/issues"
},
"homepage": "https://github.com/packem/packem#readme",
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.5.5",
"@octokit/rest": "^16.25.0",
"chalk": "^2.4.2",
"fs-extra": "^7.0.1",
"js-yaml": "^3.12.1",
"make-dir": "^3.0.0",
"node-abi": "^2.7.1",
"node-pre-gyp": "^0.12.0",
"node-pre-gyp-github": "^1.4.3",
"opencollective-postinstall": "^2.0.2",
"tar": "^4.4.8"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/packem"
}
}