-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.25 KB
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
{
"name": "backbone-socket-sync",
"version": "0.5.7",
"description": "A client/server backbone.js model synchronization library using websockets",
"author": "Stephen Pearce (pearces)",
"repository": {
"type": "git",
"url": "https://github.com/pearces/backbone-socket-sync.git"
},
"license": "MIT",
"keywords": [
"backbone",
"websockets",
"socket.io"
],
"dependencies": {
"jquery": "^2.2.4",
"underscore": ">=1.3.8",
"backbone": "~1.3.2",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"grunt": "^1.0.0",
"grunt-browserify": "^5.0.0",
"grunt-babel": "^6.0.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-uglify": "^2.3.0",
"express": "^4.15.2",
"grunt-mocha-test": "^0.13.2",
"mocha": "^3.2.0"
},
"main": "sync-models.js",
"files": [
"sync-models.js",
"sync-models-client.js",
"sync-models-client.min.js",
"sync-models-client.min.js.map",
"lib/"
],
"scripts": {
"build": "./node_modules/.bin/grunt",
"test": "./node_modules/.bin/grunt test"
}
}