-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 989 Bytes
/
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": "backbone-faux-server",
"version": "0.10.5",
"author": "biril <[email protected]>",
"description": "A framework for mocking up server-side persistence / processing for Backbone.js",
"contributors": [],
"main": "./backbone-faux-server.js",
"repository": {
"type": "git",
"url": "https://github.com/biril/backbone-faux-server"
},
"bugs": "https://github.com/biril/backbone-faux-server/issues",
"license": "MIT",
"keywords": [
"backbone",
"mock",
"test",
"persistence"
],
"dependencies": {
"underscore": "1.5.x",
"backbone": "1.1.x"
},
"devDependencies": {
"qunit": "0.7.x",
"jshint": "2.5.x",
"docco": "0.6.x"
},
"scripts": {
"test": "node ./test/testrunner.js",
"lint": "jshint --show-non-errors backbone-faux-server.js test/testrunner.js test/test-*.js",
"doc": "docco backbone-faux-server.js"
},
"engines": {
"node": ">=0.10"
},
"directories": {
"test": "test"
}
}