-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (39 loc) · 964 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
36
37
38
39
40
{
"name": "autogypi",
"version": "0.2.2",
"description": "Autogypi handles dependencies for node-gyp projects.",
"main": "dist/autogypi.js",
"typings": "dist/autogypi.d.ts",
"bin": {
"autogypi": "./autogypi"
},
"scripts": {
"tsc": "tsc",
"docts": "docts",
"typings": "typings",
"lint": "tslint src/autogypi.ts src/cli.ts",
"prepublish": "npm run lint && typings install && tsc",
"test": "node autogypi --help"
},
"author": "Juha Järvi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/charto/autogypi.git"
},
"bugs": {
"url": "https://github.com/charto/autogypi/issues"
},
"homepage": "https://github.com/charto/autogypi#readme",
"dependencies": {
"bluebird": "^3.4.0",
"commander": "~2.9.0",
"resolve": "~1.1.7"
},
"devDependencies": {
"docts": "~0.1.0",
"tslint": "^3.10.2",
"typescript": "^1.8.10",
"typings": "~0.8.1"
}
}