-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 877 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
{
"name": "npm-golang",
"version": "0.4.0",
"description": "install and run golang from npm!",
"keywords": [
"go",
"golang"
],
"repository": {
"type": "git",
"url": "https://github.com/chemdrew/npm-golang.git"
},
"bin": {
"npm-golang": "./bin/index.js"
},
"main": "index.js",
"scripts": {
"clean": "rimraf go-download.tar.gz go-download",
"test": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"unit": "ava __test__",
"coverage": "nyc npm run unit"
},
"author": "Andrew Pratt <chemdrew1@gmail.com>",
"license": "MIT",
"dependencies": {
"commander": "^2.15.0",
"request": "^2.85.0",
"targz": "^1.0.1"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"nyc": "^11.6.0",
"proxyquire": "^2.0.1",
"rimraf": "^2.6.2",
"sinon": "^4.4.8"
}
}