-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 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
43
44
45
46
47
48
{
"name": "class-js2",
"description": "Simple and powerful class utility to allow the easy use of OOP in JS. Includes inheritance, mixins, abstract classes, inherited statics, and more.",
"version": "0.6.0",
"license": "MIT Licensed. http://www.opensource.org/licenses/mit-license.php",
"homepage": "http://www.class-js.com",
"author": {
"name": "Gregory Jacobs",
"email": "greg@greg-jacobs.com",
"url": "http://greg-jacobs.com"
},
"repository": {
"type": "git",
"url": "https://github.com/gregjacobs/Class.js.git"
},
"bugs": {
"url": "https://github.com/gregjacobs/Class.js/issues"
},
"files": [
"dist"
],
"main": "./dist/Class.js",
"engines": {
"node": "*"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-concat": "^0.4.0",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-jasmine": "^0.8.0",
"grunt-jsduck": "^1.0.1"
},
"keywords": [
"class",
"class.js",
"class-js",
"oop",
"object",
"inheritance",
"mixin",
"static",
"prototype",
"abstract",
"superclass",
"subclass"
]
}