-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (20 loc) · 866 Bytes
/
package.json
File metadata and controls
24 lines (20 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ "name" : "jsclass"
, "description" : "Portable class library for JavaScript"
, "homepage" : "http://jsclass.jcoglan.com"
, "author" : "James Coglan <jcoglan@gmail.com> (http://jcoglan.com/)"
, "keywords" : ["oop", "class", "data-structures", "testing"]
, "version" : "3.0.9"
, "engines" : {"node": ">=0.4.0"}
, "main" : "./index"
, "bin" : {"jsbuild": "./bin/jsbuild"}
, "dependencies" : {"nopt": ""}
, "bugs" : "http://github.com/jcoglan/js.class/issues"
, "licenses" : [ { "type" : "MIT"
, "url" : "http://www.opensource.org/licenses/mit-license.php"
}
]
, "repositories" : [ { "type" : "git"
, "url" : "git://github.com/jcoglan/js.class.git"
}
]
}