-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "buidl-storage",
"version": "0.1.1",
"description": "Abstract storage solution for browser/node based around indexedDB",
"author": "TekHedz, LLC",
"homepage": "https://github.com/buidlhub/buidl-storage/#readme",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/buidlhub/buidl-storage.git"
},
"scripts": {
"test": "mocha --require babel-core/register --require babel-polyfill $(find ./src -name *.test.js)",
"prepare": "babel ./src --out-dir ./dist --ignore '**/*.test.js'",
"build": "npm run prepare"
},
"bugs": {
"url": "https://github.com/buidlhub/buidl-storage/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.18.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"mocha": "^6.2.0"
},
"dependencies": {
"async-mutex": "^0.1.3",
"buidl-utils": "^0.1.0",
"localforage": "^1.7.3",
"localforage-setitems": "^1.4.0",
"yup": "^0.27.0"
}
}