-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.12 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
{
"name": "idb-lite",
"version": "0.1.0",
"description": "Light weight indexed-db key value library matching the API of https://www.npmjs.com/package/idb-keyval\"",
"main": "dist/index-cjs.js",
"module": "dist/index.mjs",
"scripts": {
"test": "npm run explain_tests && npm run launch_tests",
"explain_tests": "echo Please open a window to /tests/index.html from the server shown below",
"launch_tests": "http-server",
"build": "node build/wrap.js && node build/copy.js",
"build_watch": "fswatch src | xargs -n1 -I{} npm run build",
"build_ts_tests": "npx tsc",
"build_ts_tests_watch": "npx tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goofballLogic/idb-lite.git"
},
"keywords": [
"idb-keyval",
"indexedb"
],
"author": "goofballLogic",
"license": "MIT",
"bugs": {
"url": "https://github.com/goofballLogic/idb-lite/issues"
},
"homepage": "https://github.com/goofballLogic/idb-lite#readme",
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"http-server": "^0.11.1",
"typescript": "^3.5.3",
"uglify-js": "^3.6.0"
}
}