-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
65 lines (65 loc) · 1.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "napa",
"description": "A helper for installing repos without a package.json with npm.",
"version": "3.0.0",
"homepage": "https://github.com/shama/napa",
"author": {
"name": "Kyle Robinson Young",
"email": "[email protected]",
"url": "http://dontkry.com"
},
"repository": {
"type": "git",
"url": "git://github.com/shama/napa.git"
},
"bugs": {
"url": "https://github.com/shama/napa/issues"
},
"license": "MIT",
"engines": {
"node": ">= 4.0"
},
"bin": {
"napa": "bin/napa"
},
"main": "lib/pkg.js",
"scripts": {
"test": "standard && istanbul cover --report lcov --print detail test.js",
"coverage": "istanbul report html && open ./coverage/index.html"
},
"dependencies": {
"download": "^6.2.2",
"extend": "^3.0.1",
"load-json-file": "^2.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"npm-cache-filename": "^1.0.2",
"npmlog": "^4.1.0",
"rimraf": "^2.6.1",
"tar-pack": "^3.4.0",
"write-json-file": "^2.2.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.0",
"istanbul": "^0.4.5",
"pre-commit": "^1.2.2",
"standard": "^10.0.2",
"tape": "^4.6.3"
},
"keywords": [
"npm",
"install",
"assets"
],
"napa": {
"foo": "foo/repo",
"ember": "https://github.com/emberjs/ember.js/archive/v1.7.0.tar.gz",
"handlebars": "components/handlebars.js"
},
"napa-config": {
"cache": false
},
"pre-commit": [
"format"
]
}