This repository was archived by the owner on Jun 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (40 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (40 loc) · 1.37 KB
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
{
"name" : "ender-builder"
, "description" : "Build assembler for the Ender CLI"
, "version" : "1.0.5"
, "authors" : [
"Rod Vagg @rvagg <rod@vagg.org> (https://github.com/rvagg)"
, "Dustin Diaz @ded <dustin@dustindiaz.com> (https://github.com/ded)"
, "Jacob Thornton @fat <jacob@medium.com> (https://github.com/fat)"
, "Andrew McCollum (https://github.com/amccollum)"
]
, "keywords" : []
, "main" : "./lib/index.js"
, "homepage" : "https://enderjs.com"
, "dependencies" : {
"ender-args-parser" : "1.0.3"
, "async" : "~0.2.10"
, "errno" : "~0.0.3"
, "glob" : "~3.1.14"
, "mu2" : "~0.5.17"
, "uglify-js" : "~2.4.7"
}
, "devDependencies" : {
"ender-package" : "1.0.3"
, "bustermove" : "*"
, "referee" : "*"
, "tap" : "*"
, "require-subvert" : "*"
, "mkfiletree" : "*"
}
, "scripts" : {
"test" : "tap test/*-test.js"
}
, "bin" : {
"ender-builder" : "./bin/ender-builder.js"
}
, "repository" : {
"type" : "git"
, "url" : "https://github.com/ender-js/ender-builder.git"
}
}