-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "indb",
"version": "4.0.1",
"description": "A library to operate IndexedDB easily.",
"main": "dist/index.js",
"module": "es/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist && mkdir dist && NODE_OPTIONS=--openssl-legacy-provider webpack",
"test": "npm run build && node test.js",
"watch": "npm run build -- --watch",
"sync": "npm run build && cp -f dist/* ../@tencent/shadow-log/node_modules/indb/dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangshuang/indb.git"
},
"keywords": [
"IndexedDB"
],
"author": "tangshuang",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-spread": "^7.13.0",
"@babel/preset-env": "^7.7.7",
"babel-loader": "^8.0.4",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"chai": "^4.1.2",
"express": "^4.16.3",
"hello-webworker": "^1.3.3",
"mocha": "^5.2.0",
"open": "^6.4.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}