-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (33 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (33 loc) · 1.04 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" : "klazz",
"version" : "0.0.1",
"homepage" : "https://github.com/arkbot/klazz",
"author" : "Arkbot Industries <webmaster@arkbot.com>",
"description" : "A set of simple prototypal inheritance conventions for NodeJS",
"keywords" : [ "prototype", "inheritance" ],
"license" : "MIT",
"contributors" : [
{
"name" : "Adam Eberlin",
"email" : "adam@arkbot.com"
}
],
"preferGlobal" : false,
"analyze" : false,
"scripts" : {
"test" : "vows --spec --isolate"
},
"main" : "./lib/klazz.js",
"repository" : {
"type" : "git",
"url" : "https://github.com/arkbot/klazz.git"
},
"dependencies" : { },
"devDependencies" : {
"vows" : "0.7.x"
},
"bundleDependencies" : [ ],
"engines" : {
"node" : ">=0.8"
}
}