-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "node-rar",
"version": "0.0.2",
"main": "lib/rar.js",
"description": "Node Rar Addon for reading RAR archives using the bundled UnRAR library.",
"homepage": "https://github.com/pingjiang/node-rar",
"bugs": "https://github.com/pingjiang/node-rar/issues",
"author": {
"name": "pingjiang",
"email": "pingjiang1989@gmail.com",
"url": "https://github.com/pingjiang"
},
"repository": {
"type": "git",
"url": "https://github.com/pingjiang/node-rar"
},
"license": "MIT",
"keywords": [
"node-rar",
"NodeJS",
"rar",
"unrar",
"addon"
],
"devDependencies": {
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.9.0",
"grunt-node-gyp": "^0.4.1",
"jshint-stylish": "^0.2.0",
"load-grunt-tasks": "^0.4.0",
"time-grunt": "^0.3.1"
},
"scripts": {
"test": "grunt"
},
"bin": {
"node-rar": "cli.js"
},
"preferGlobal": "true",
"gypfile": true,
"dependencies": {
"bindings": "^1.2.1",
"nan": "^1.3.0"
}
}