-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.66 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
52
53
54
55
56
57
58
59
{
"name": "backbone-associate",
"version": "0.0.13",
"description": "Presumtionless model associations for Backbone.js",
"license": "MIT",
"keywords": [
"backbone-associate",
"association",
"model",
"backbone"
],
"author": "RJ Zaworski <[email protected]> (http://rjzaworski.com)",
"contributors": [
"Jason Brubaker (https://github.com/jrrbru)",
"Kenny Jones ([email protected])",
"Antonio Miranda (http://www.bit-ink.com/)",
"Dan Hansen (https://github.com/dansomething)"
],
"homepage": "https://github.com/rjz/backbone.associate",
"repository": {
"type": "git",
"url": "[email protected]:rjz/backbone.associate.git"
},
"bugs": {
"url": "https://github.com/rjz/backbone.associate/issues"
},
"main": "src/backbone.associate.js",
"scripts": {
"lint": "jshint .",
"pretest": "npm run lint",
"test": "npm run test-node",
"test-browser-amd": "karma start test/browser-amd/karma.conf.js",
"test-browser-global": "karma start test/browser-global/karma.conf.js",
"test-node": "jasmine-node ./test",
"coverage": "istanbul cover jasmine-node ./test"
},
"optionalDependencies": {
"backbone": ">=0.9.2",
"underscore": ">=1.4.3"
},
"dependencies": {
"backbone": ">=0.9.2",
"underscore": ">=1.4.3"
},
"devDependencies": {
"coveralls": "~2.11.9",
"istanbul": "~0.4.3",
"jasmine-core": "~2.4.1",
"jasmine-node": "~1.14.5",
"jquery": "~3.0.0",
"jshint": "~2.9.2",
"karma": "~0.13.22",
"karma-jasmine": "~1.0.2",
"karma-phantomjs-launcher": "~1.0.0",
"karma-requirejs": "~1.0.0",
"phantomjs-prebuilt": "~2.1.7",
"requirejs": "~2.2.0"
}
}