-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "@underdogio/backbone-requester",
"description": "Make server-based requests in Backbone via request",
"version": "1.2.0",
"homepage": "https://github.com/underdogio/backbone-requester",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/underdogio/backbone-requester.git"
},
"bugs": {
"url": "https://github.com/underdogio/backbone-requester/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/underdogio/backbone-requester/blob/master/LICENSE-MIT"
}
],
"main": "lib/backbone-requester",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"precheck": "twolfson-style precheck lib/ test/",
"lint": "twolfson-style lint lib/ test/",
"pretest": "twolfson-style install",
"test": "npm run precheck && mocha --reporter dot && npm run lint"
},
"dependencies": {
"underscore": "~1.8.2"
},
"devDependencies": {
"backbone": "~1.1.2",
"chai": "~2.1.0",
"fixed-server": "~0.4.0",
"jscs": "~1.7.3",
"jshint": "~2.5.10",
"mocha": "~1.11.0",
"nine-track": "~2.0.0",
"request": "~2.53.0",
"twolfson-style": "~1.6.0"
},
"keywords": [
"backbone",
"request",
"server",
"plugin",
"mixin"
]
}