-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.14 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
{
"name": "async-idb",
"version": "0.0.1",
"description": "ES1019 async indexedDB",
"scripts": {
"start": "parcel demo/index.html --out-dir .serve --out-file index.html",
"build": "rollup -c && node --experimental-modules script/size-report.mjs",
"postbuild": "tsc --declaration --emitDeclarationOnly --outFile dist/esm.d.ts src/asyncdb.ts",
"prettier": "prettier --write --print-width 100 'src/**/*' 'demo/*' rollup.config.js package.json README.md"
},
"author": "Adrien Gibrat <adrien.gibrat@gmail.com>",
"license": "WTFPL",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-async-generator-functions": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"del": "^6.0.0",
"filesize": "^6.0.1",
"glob": "^7.1.6",
"parcel-bundler": "^1.12.5",
"prettier": "^2.3.0",
"rollup": "^3.29.5",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.2.4"
},
"optionalDependencies": {
"core-js": "^3.6.4",
"ix": "^4.3.1",
"regenerator-runtime": "^0.13.3"
}
}