-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.03 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
{
"name": "@fknop/node-unrar",
"version": "1.1.0",
"description": "Native NodeJS rar addon",
"main": "lib/index.js",
"files": [
"src",
"lib",
"tsconfig.json",
"vendor",
"binding.gyp"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "node-gyp rebuild",
"build": "node-gyp build",
"tsc": "tsc -p tsconfig.json",
"prepublish": "npm run tsc"
},
"keywords": [
"node",
"addon",
"rar",
"unrar",
"fknop",
"native"
],
"author": "Florian Knop",
"license": "MIT",
"gypfile": true,
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.4.0"
},
"devDependencies": {
"@types/es6-promise": "0.0.32",
"@types/node": "0.0.1",
"typescript": "^2.0.10"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fknop/node-unrar.git"
},
"bugs": {
"url": "https://github.com/fknop/node-unrar/issues"
},
"homepage": "https://github.com/fknop/node-unrar#readme"
}