-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1013 Bytes
/
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
37
38
39
{
"name": "Classy",
"description": "An object-oriented library for Javascript",
"version": "1.0.0",
"homepage": "https://github.com/mblinsitu/Classy",
"main": "classy.js",
"files": ["classy.js", "oo.js", "assets"],
"scripts": {
"test": ["mocha", "karma start"]
},
"keywords": ["object-oriented framework", "classes", "mixins", "wrappers"],
"author": {
"name": "Michel Beaudouin-Lafon",
"email": "mbl@lri.fr",
"url": "http://www.lri.fr/~mbl"
},
"contributors": [{
"name": "Michel Beaudouin-Lafon",
"email": "mbl@lri.fr",
"url": "http://www.lri.fr/~mbl"
}],
"bugs": {
"url": "https://github.com/mblinsitu/Classy/issues",
"email": "mbl@lri.fr"
},
"licenses": [{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}],
"devDependencies": {
"chai": ">=1.9.1",
"karma-mocha": ">0.1.7",
"karma-chrome-launcher": ">0.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/mblinsitu/Classy.git"
}
}