-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "localforage-startswith",
"version": "1.4.0",
"description": "Adds startsWith method to localForage.",
"homepage": "https://github.com/thgreasi/localForage-startsWith",
"main": "dist/localforage-startswith.js",
"jsnext:main": "dist/localforage-startswith.es6.js",
"typings": "typings/index.d.ts",
"scripts": {
"prebuild": "eslint lib test",
"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 && node_modules/.bin/tsc --project typing-tests",
"prepublish": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/thgreasi/localForage-startsWith.git"
},
"keywords": [
"localforage",
"startsWith"
],
"author": "Thodoris Greasidis",
"licence": "Apache-2.0",
"bugs": {
"url": "http://github.com/thgreasi/localForage-startsWith/issues"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^2.8.0",
"mocha": "^2.4.5",
"requirejs": "^2.2.0",
"rollup": "^0.37.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-multi-entry": "^2.0.1",
"source-map-support": "^0.4.0",
"typescript": "^2.0.3"
},
"dependencies": {
"localforage": ">=1.4.0"
}
}