forked from powmedia/backbone-deep-model
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "@kahwee/backbone-deep-model",
"version": "2.0.2",
"description": "Improved support for models with nested attributes.",
"author": {
"name": "Charles Davison"
},
"scripts": {
"build": "gulp",
"test": "./node_modules/mocha/bin/mocha -u bdd",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"coverage-html": "istanbul cover ./node_modules/mocha/bin/_mocha -- "
},
"dependencies": {
"backbone": "^1.0.0",
"jquery": "^2.1.3",
"lodash.clonedeep": "^4.0.1",
"lodash.merge": "^4.0.1",
"underscore": "^1.8.2"
},
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.4.1",
"coveralls": "^2.11.2",
"gulp": "^3.8.11",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.1.0",
"gulp-wrap": "^0.11.0",
"istanbul": "^0.4.1",
"mocha": "^2.2.1",
"mocha-lcov-reporter": "1.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"repository": {
"type": "git",
"url": "[email protected]:kahwee/backbone-deep-model.git"
},
"license": "MIT"
}