forked from jakearchibald/idb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1002 Bytes
/
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
{
"name": "@slickstream/idb",
"version": "6.1.5",
"description": "A small wrapper that makes IndexedDB usable",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"typings": "build/esm/index.d.ts",
"scripts": {
"build": "PRODUCTION=1 rollup -c && node --experimental-modules lib/size-report.mjs",
"dev": "rollup -c --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/jakearchibald/idb.git"
},
"files": [
"build/**",
"with-*"
],
"author": "Jake Archibald",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"conditional-type-checks": "^1.0.5",
"del": "^6.0.0",
"filesize": "^6.3.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rollup": "^2.48.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.1-rc"
}
}