forked from lucksoft-yungui/luck-node-mtp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 965 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
{
"main": "main.js",
"dependencies": {
"node-addon-api": "^1.1.0",
"node-gyp-build": "^4.6.0",
"shelljs": "^0.8.5"
},
"scripts": {
"test": "cross-env NODE_ENV=production node test/test.js",
"build:dev": "node-gyp rebuild --debug",
"build": "node-gyp build",
"clean": "node-gyp clean",
"prebuild": "prebuildify --napi --strip && node install/after.js",
"install": "node-gyp-build"
},
"gypfile": true,
"name": "luck-node-mtp",
"version": "1.0.0",
"author": "lucksoft",
"license": "ISC",
"description": "cross-platform android device file management tool, based on libmtp. Support `MacOs`, `Windows`, `linux` platforms.",
"homepage": "https://github.com/lucksoft-yungui/luck-node-mtp",
"bugs": {
"url": "https://github.com/lucksoft-yungui/luck-node-mtp/issues"
},
"keywords": [
"mtp",
"node",
"android",
"file management"
],
"devDependencies": {
"cross-env": "^7.0.3"
}
}