-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 950 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
41
42
43
44
45
46
47
{
"name": "npm-gif",
"version": "1.0.2",
"description": "Replace NPM install's progress bar with a GIF",
"keywords": [
"npm",
"install",
"gif",
"image",
"img",
"progress",
"bar"
],
"author": {
"name": "Kodie Grantham",
"email": "[email protected]",
"url": "http://kodieg.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kodie/npm-gif.git"
},
"bugs": {
"url": "https://github.com/kodie/npm-gif/issues"
},
"homepage": "https://github.com/kodie/npm-gif",
"license": "MIT",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "standard"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.2.0"
},
"dependencies": {
"cross-spawn-async": "^2.2.5",
"global-npm": "^0.3.0",
"minimist": "^1.2.0",
"mock-require": "^2.0.2",
"progress-img": "^1.1.0"
},
"devDependencies": {
"standard": "^10.0.3"
}
}