-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "gurgitator",
"homepage": "https://github.com/Floobits/gurgitator/",
"repository": {
"type": "git",
"url": "git://github.com:Floobits/gurgitator.git"
},
"contributors": [
"Matt Kaniaris <[email protected]>",
"Geoff Greer <[email protected]>"
],
"version": "0.4.1",
"optionalDependencies": {
"fsevents": ">=0.3.0"
},
"dependencies": {
"async": "1.x",
"floorine": "0.3.x",
"fs-ext": "https://github.com/ggreer/node-fs-ext/archive/nan_2.tar.gz",
"lodash": "3.x",
"mkdirp": "0.5.x",
"optimist": "0.6.x"
},
"devDependencies": {
"eslint": "1.x",
"eslint-config-floobits": "*"
},
"engines": {
"node": ">=3.0"
},
"preferGlobal": true,
"bin": {
"gurgitator": "./bin/gurgitator"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "./bin/gurgitator",
"lint": "./node_modules/eslint/bin/eslint.js *.js lib/*.js"
},
"bugs": {
"url": "https://github.com/Floobits/gurgitator/issues"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "https://github.com/Floobits/gurgitator/blob/master/LICENSE"
}
]
}