-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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": "debstep",
"version": "1.1.1",
"description": "Control apt tasks via nodejs",
"main": "index.js",
"scripts": {
"prepare": "npm run build",
"install": "node-gyp-build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:clean && npm run build:native && npm run build:lib && npm run build:flow && npm run build:doc && npm run build:copy",
"build:native": "prebuildify --verbose --napi --thin=yes --ensure --release -t 20.17.0 -t 18.13.0 -t 16.0.0 -t 14.15.0 -t 12.18.3",
"build:clean": "rimraf lib",
"build:lib": "babel src/ -d lib/",
"build:flow": "flow-copy-source -v src lib",
"build:doc": "documentation readme src/* --section Reference",
"build:copy": "cp -r ./prebuilds lib/prebuilds && babel-node ./scripts/copy.js",
"lint": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigbn/debstep.git"
},
"keywords": [
"apt",
"debian",
"dpkg"
],
"flow.pathToFlow": "${workspaceRoot}/node_modules/.bin/flow",
"author": "Pavel Shabardin",
"license": "Apache-2.0",
"standard": {
"parser": "babel-eslint"
},
"bugs": {
"url": "https://github.com/bigbn/debstep/issues"
},
"homepage": "https://github.com/bigbn/debstep#readme",
"dependencies": {
"node-gyp-build": "^4.8.2",
"prebuildify": "^6.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.25.1",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.7",
"@babel/preset-flow": "^7.12.1",
"documentation": "^6.2.0",
"eslint-plugin-flowtype": "^5.2.0",
"flow": "^0.2.3",
"flow-bin": "^0.138.0",
"flow-copy-source": "^2.0.9",
"rimraf": "^6.0.1",
"standard": "^16.0.3"
}
}