-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.21 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "master-class",
"version": "0.5.9",
"description": "JavaScript classes with an edge.",
"homepage": "https://github.com/CardForest/master-class",
"author": {
"name": "Amit Portnoy",
"email": "[email protected]",
"url": "https://github.com/amitport"
},
"repository": "https://github.com/CardForest/master-class.git",
"license": "AGPL-3.0",
"files": [
"index.js",
"lib"
],
"keywords": [
"master-class",
"object",
"class",
"model"
],
"dependencies": {
"key-path": "^0.3.2",
"lodash.forown": "^4.4.0",
"reflect-metadata": "^0.1.8"
},
"devDependencies": {
"browserify": "^13.1.1",
"jshint": "^2.9.4",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"mocha": "^3.2.0",
"sinon": "^1.17.6",
"watchify": "^3.8.0"
},
"scripts": {
"karma": "karma start --browsers Firefox",
"mocha": "mocha test/**/*.js",
"lint": "jshint .",
"browserify": "browserify index.js > browser.js",
"pretest": "npm run lint",
"test": "npm run mocha & npm run karma"
},
"engines": {
"node": "^5.8.0"
}
}