-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.33 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
{
"name": "localforage-plugin-boilerplate",
"version": "1.1.1",
"description": "A simple plugin boilerplate for localForage.",
"homepage": "https://github.com/localForage-extensions/localForage-plugin-boilerplate",
"main": "dist/localforage-plugin-boilerplate.js",
"jsnext:main": "dist/localforage-plugin-boilerplate.es6.js",
"scripts": {
"lint": "eslint lib test",
"prebuild": "npm run lint",
"build": "rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js",
"pretest": "rollup -c rollup.config.test.js",
"test": "mocha build/test-bundle.js",
"prepublish": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/localForage-extensions/localForage-plugin-boilerplate.git"
},
"keywords": [
"localforage",
"plugin"
],
"author": "Thodoris Greasidis",
"licence": "Apache-2.0",
"bugs": {
"url": "http://github.com/localForage-extensions/localForage-plugin-boilerplate/issues"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-preset-es2015-rollup": "^1.1.1",
"eslint": "^2.8.0",
"mocha": "^2.4.5",
"requirejs": "^2.2.0",
"rollup": "^0.26.1",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-multi-entry": "^1.2.0",
"source-map-support": "^0.4.0"
},
"dependencies": {
"localforage": ">=1.5.0"
}
}