-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "envset",
"description": "Set env vars before running your program",
"version": "0.9.1",
"homepage": "https://github.com/goliatone/envset",
"author": {
"name": "goliatone",
"email": "hello@goliatone.com",
"url": "http://goliatone.com"
},
"repository": {
"type": "git",
"url": "git://github.com/goliatone/envset.git"
},
"bugs": {
"url": "https://github.com/goliatone/envset/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/goliatone/envset/blob/master/LICENSE-MIT"
}
],
"main": "lib/envset",
"bin": "bin/envset",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt nodeunit",
"postinstall": "node ./bin/postinstall",
"postuninstall": "node ./bin/postuninstall"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-watch": "~0.2.0",
"grunt": "~0.4.5"
},
"keywords": [
"environment",
"envdir",
"env",
"development"
],
"dependencies": {
"filefinder": "^0.3.0",
"gextend": "^0.1.6",
"grunt-cli": "^0.1.13",
"ini": "^1.3.4",
"rc": "^1.1.2",
"update-notifier": "^0.5.0",
"userhome": "^1.0.0"
}
}