-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "idb-schema",
"description": "IndexedDB schema manager",
"repository": "treojs/idb-schema",
"version": "3.2.1",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"indexeddb",
"schema",
"treo",
"offline",
"onupgradeneeded"
],
"scripts": {
"prepublish": "babel src --out-dir lib",
"test": "eslint src/ test/ && browserify-test -t babelify && SAUCE_USERNAME=idb-schema zuul --tunnel-host http://treojs.com --no-coverage -- test/index.js",
"development": "browserify-test -t babelify --watch"
},
"dependencies": {
"is-integer": "^1.0.6",
"is-plain-obj": "^1.1.0",
"object-values": "^1.0.0"
},
"devDependencies": {
"babel-cli": "6.1.18",
"babel-core": "6.1.18",
"babel-eslint": "^5.0.0-beta4",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify-test": "^2.1.2",
"chai": "^3.4.1",
"es6-promise": "^3.0.2",
"eslint": "^1.10.2",
"eslint-config-airbnb": "^1.0.2",
"idb-factory": "^1.0.0",
"idb-request": "^3.0.0",
"indexeddbshim": "^2.2.1",
"lodash": "^3.10.1",
"zuul": "^3.7.3"
}
}