-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
63 lines (63 loc) · 1.46 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
60
61
62
63
{
"name": "ampersand-sync",
"description": "Provides sync behavior for updating data from ampersand models and collections to the server.",
"version": "5.1.0",
"author": "Henrik Joreteg <[email protected]>",
"files": [
"ampersand-sync*",
"core.js"
],
"browserify": {
"transform": [
"ampersand-version"
]
},
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-sync/issues"
},
"dependencies": {
"ampersand-version": "^1.0.0",
"lodash": "^4.11.1",
"media-type": "0.3.0",
"qs": "^6.1.0",
"request": "^2.55.0",
"xhr": "^2.0.5"
},
"devDependencies": {
"ampersand-model": "^7.0.0",
"ampersand-rest-collection": "^5.0.0",
"concat-stream": "^1.4.8",
"jshint": "^2.5.3",
"phantomjs": "^2.1.7",
"precommit-hook": "^3.0.0",
"sinon": "^1.17.2",
"tape": "^4.0.0",
"zuul": "^3.9.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-sync",
"keywords": [
"backbone",
"sync",
"rest",
"ampersand"
],
"license": "MIT",
"main": "ampersand-sync.js",
"browser": "ampersand-sync-browser.js",
"repository": {
"type": "git",
"url": "https://github.com/ampersandjs/ampersand-sync.git"
},
"scripts": {
"start": "zuul --local -- test/index.js",
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js",
"lint": "jshint .",
"validate": "npm ls"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}