forked from seajs/seajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.03 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
{
"name" : "seajs",
"version" : "1.3.0-dev",
"description" : "A Module Loader for the Web",
"homepage" : "http://seajs.org/",
"keywords" : ["loader", "module", "CommonJS", "browser", "CMD"],
"author" : "Frank Wang <lifesinger@gmail.com>",
"engines" : {"node": ">= 0.6.0"},
"dependencies" : [],
"repository" : {
"type": "git",
"url" : "git://github.com/seajs/seajs.git"
},
"main" : "./lib/sea-node.js",
"preferGlobal" : true,
"output" : {
"sea.js": [
"sea.js",
"util-lang.js",
"util-log.js",
"util-path.js",
"util-fetch.js",
"util-deps.js",
"module.js",
"config.js",
"prepare.js",
"bootstrap.js"
]
}
}