-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
35 lines (35 loc) · 859 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
{
"name": "robbyrussell",
"version": "0.1.4",
"description": "Robby Russell's theme written in JavaScript",
"main": "index.js",
"repository": "git@github.com:denysdovhan/robbyrussell-node.git",
"author": "Denys Dovhan <email@denysdovhan.com>",
"license": "MIT",
"bin": {
"robbyrussell": "./robbyrussell"
},
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"postinstall": "./install.js",
"postuninstall": "./uninstall.js",
"build": "pkg . --out-dir=build",
"test": "tape tests.js | tap-spec",
"postpublish": "git push --follow-tags"
},
"dependencies": {
"chalk": "^1.1.3",
"deep-assign": "^2.0.0",
"git-state": "^4.0.0",
"pify": "^2.3.0"
},
"devDependencies": {
"eslint": "^4.6.0",
"has-ansi": "^3.0.0",
"pkg": "^4.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
}
}