-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"name" : "inherit",
"version" : "2.2.7",
"description" : "Inheritance module for Node.js and browsers",
"homepage" : "https://github.com/dfilatov/node-inherit",
"keywords" : ["class", "prototype", "inheritance", "mixins", "static"],
"author" : "Dmitry Filatov <[email protected]>",
"contributors" : [{
"name" : "Dmitry Filatov",
"email" : "[email protected]"
}, {
"name" : "Sergey Belov",
"email" : "[email protected]",
"url" : "http://github.com/arikon"
}],
"repository": "dfilatov/node-inherit",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"nyc": "^11.0.1",
"coveralls" : "^2.13.1",
"nodeunit" : "^0.11.1"
},
"main" : "index",
"scripts" : {
"clean" : "rm -r .nyc_output coverage",
"coverage" : "nyc --reporter=text --reporter=html nodeunit; echo; echo 'Open coverage/index.html file in your browser'",
"coveralls" : "nyc report --reporter=text-lcov | coveralls",
"test" : "nyc nodeunit"
},
"enb" : {
"sources" : [
"lib/inherit.js"
]
}
}