-
Notifications
You must be signed in to change notification settings - Fork 680
/
package.json
55 lines (55 loc) · 1.57 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
{
"author": "Scott Walton <s@cott.me.uk>",
"name": "backbone.localstorage",
"version": "2.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jeromegn/backbone.localstorage.git"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.3.2",
"babel-preset-latest": "^6.22.0",
"backbone": "^1.3.3",
"coveralls": "^2.11.16",
"eslint": "^4.3.0",
"expect.js": "^0.3.1",
"html-webpack-plugin": "^2.28.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^2.0.0",
"jquery": "~3.1.1",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^0.2.3",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"sinon": "next",
"uglify-js": "~1.2.6",
"underscore": "1.8.3",
"webpack": "^2.2.1",
"window-or-global": "^1.0.1"
},
"peerDependencies": {
"backbone": "1.3.3"
},
"scripts": {
"build": "webpack",
"ci": "karma start --single-run --browsers Firefox",
"compile": "webpack -p",
"debug": "test",
"fix": "eslint --fix .",
"lint": "eslint .",
"package": "npm run build && npm run compile",
"test": "karma start --single-run && eslint src test",
"watch": "karma start"
},
"keywords": ["backbone", "localstorage", "local", "storage", "cache", "sync"],
"main": "build/backbone.localStorage.js"
}