forked from AmpersandJS/ampersand-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "ampersand-model",
"description": "An extension to ampersand-state that adds methods and properties for working with a RESTful API.",
"version": "4.0.1",
"author": "Henrik Joreteg <[email protected]>",
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-model/issues"
},
"dependencies": {
"ampersand-state": "^4.3.2",
"ampersand-sync": "^2.0.0",
"underscore": "^1.6.0"
},
"devDependencies": {
"ampersand-registry": "0.x.x",
"browserify": "~3.39.0",
"precommit-hook": "*",
"proxyquire": "^1.0.0",
"run-browser": "~1.3.0",
"tape": "~2.12.3",
"tape-run": "~0.1.1",
"uglify-js": "2.4.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-model",
"keywords": [
"model, ampersand, state"
],
"license": "MIT",
"main": "./ampersand-model.js",
"repository": {
"type": "git",
"url": "https://github.com/ampersandjs/ampersand-model.git"
},
"scripts": {
"start": "run-browser test/index.js",
"test": "browserify test/*.js | tape-run"
},
"testling": {
"files": "test/index.js",
"browsers": [
"ie/8..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}