-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 782 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 782 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "proclass",
"version": "v1.0.0",
"description": "Classical inheritance with protected members.",
"keywords": [
"protected",
"classical",
"class",
"inheritance"
],
"bugs": "http://github.com/bfrohs/Proclass/issues",
"licenses": [
{
"type": "The MIT License (MIT)",
"url": "http://github.com/bfrohs/Proclass/blob/master/LICENSE"
}
],
"author": {
"name": "Brandon Frohs",
"email": "bfrohs@gmail.com",
"url": "https://twitter.com/bfrohs"
},
"main": "./lib/Proclass.js",
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "git://github.com/bfrohs/Proclass.git"
},
"scripts": {
"test": "mocha test/*"
},
"dependencies": {
},
"devDependencies": {
"mocha": "*"
},
"engines": {
"node": ">=0.8.0"
}
}