-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.9 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
{
"name": "localforage-indexes",
"version": "1.1.1",
"description": "plugin for localforage to work with indexes in indexedDb",
"homepage": "https://github.com/liqwid/localforage-indexes",
"main": "dist/localforage-indexes.js",
"jsnext:main": "dist/localforage-indexes.es6.js",
"scripts": {
"prebuild": "eslint lib",
"build": "rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js",
"pretest": "rollup -c rollup.config.test.js",
"test": "karma start karma.config.js",
"test_dev": "watch 'rollup -c rollup.config.test.js' test/ lib/",
"prepublish": "npm run build && npm run pretest && karma start karma.config.js --single-run",
"dev": "watch 'npm run build' lib/"
},
"repository": {
"type": "git",
"url": "git://github.com/liqwid/localforage-indexes.git"
},
"keywords": [
"indexes",
"indexedDb",
"localforage",
"plugin"
],
"author": "Popov Anton",
"licence": "Apache-2.0",
"bugs": {
"url": "https://github.com/liqwid/localforage-indexes/issues"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-preset-es2015-rollup": "^1.1.1",
"chai": "^3.5.0",
"eslint": "^2.8.0",
"karma": "^1.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-verbose-reporter": "0.0.5",
"mocha": "^2.4.5",
"requirejs": "^2.2.0",
"rollup": "^0.26.1",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-multi-entry": "^1.2.0",
"rollup-plugin-node-resolve": "^2.0.0",
"sinon": "^1.17.7",
"source-map-support": "^0.4.0",
"watch": "^1.0.1"
},
"dependencies": {
"localforage": ">=1.4.0"
}
}