-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (40 loc) · 1.17 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
{
"name": "seed",
"version": "0.3.1",
"description": "Flexible package manager for CommonJS",
"site": "http://www.seedjs.org",
"author": "Charles Jolley <[email protected]>",
"keywords": ["package manager", "package installer"],
"repositories": [
{ "type": "git", "url": "git://github.com/seedjs/seed.git" }
],
"licenses": [{ "type": "MIT" }],
"seed:sources": {
"local": "~/.seeds",
"global": "/usr/local/seeds"
},
"seed:commands": {
"install": "seed:commands/install",
"remove": "seed:commands/remove",
"list": "seed:commands/list",
"help": "seed:commands/help",
"update": "seed:commands/update",
"freeze": "seed:commands/freeze",
"unfreeze": "seed:commands/unfreeze",
"remote": "seed:commands/remote",
"push": "seed:commands/push",
"fork": "seed:commands/fork",
"config": "seed:commands/config"
},
"seed:loader": {
".js": "seed:loader"
},
"seed:domain": "seed",
"scripts": {
"install": "scripts/install.js",
"remove": "scripts/remove.js"
},
"seed:remotes": [
{ "url": "http://seedjs.org/seed", "plugin": "seed:remote" }
]
}