-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "@astronautlabs/libav",
"version": "0.0.21",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b",
"test": "npm run build && node dist/installer && npm run rebuild:native:debug && node --expose-gc dist/test",
"test:fast": "npm run build && node --expose-gc dist/test",
"build:native": "node-gyp -j 8 build --release",
"build:native:debug": "node-gyp -j 8 build --debug",
"rebuild:native": "node-gyp -j 8 rebuild --release",
"rebuild:native:debug": "node-gyp -j 8 rebuild --debug",
"gyp:configure": "node-gyp configure",
"preinstall": "node dist/installer",
"prepublishOnly": "npm test",
"install": "node-gyp rebuild"
},
"author": "Astronaut Labs, LLC",
"license": "LGPL-2.1-or-later",
"gypfile": true,
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/rimraf": "^3.0.2",
"@types/tar": "^6.1.1",
"@types/unzip-stream": "^0.3.1",
"chai": "^4.3.6",
"razmin": "^1.2.0",
"typescript": "^4.7.4"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^5.0.0",
"node-fetch": "^2.6.7",
"rimraf": "^3.0.2",
"unzip-stream": "^0.3.1"
}
}