-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 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
{
"name": "backbone-computed-properties",
"description": "Ember style computed properties for Backbone.js Models",
"author": "David <[email protected]>",
"version": "0.3.0",
"main": "./src/backbone-computed.js",
"repository": {
"type": "git",
"url": "https://github.com/skaterdav85/backbone-computed-properties"
},
"bugs": {
"url": "https://github.com/skaterdav85/backbone-computed-properties/issues"
},
"keywords": [
"ember",
"ember.js",
"backbone",
"backbone.js",
"computed",
"computed properties"
],
"devDependencies": {
"chai": "~1.9.2",
"gulp": "~3.8.10",
"gulp-concat": "~2.4.1",
"gulp-uglify": "~1.0.1",
"karma": "~0.12.16",
"karma-browserify": "^2.0.0",
"karma-chai": "~0.1.0",
"karma-growl-notifications-reporter": "0.0.2",
"karma-mocha": "~0.1.9",
"karma-phantomjs-launcher": "~0.1.4",
"karma-sinon": "~1.0.3",
"mocha": "~1.21.5",
"sinon": "~1.10.3"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start --single-run --browsers PhantomJS"
},
"readmeFilename": "README.md",
"license": "MIT",
"dependencies": {
"jquery": "^1.11.1",
"backbone": "^1.1.2",
"underscore": "^1.7.0"
}
}