-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
43
44
45
46
47
48
49
50
{
"name": "db64",
"version": "0.8.8",
"description": "A Practical IndexedDB API",
"main": "db64.js",
"type": "module",
"exports": {
"import": "./dist/db64.js",
"require": "./dist/db64.cjs"
},
"scripts": {
"test": "npx http-server -p=3333 --s | npx mocha-chrome http://127.0.0.1:3333/test/db64.test.html --ignore-exceptions",
"tester": "npx http-server -a 127.0.0.1 -p 2222 -o",
"lint": "npx eslint --fix ./src ./create-distribution.js ./examples ./test",
"d": "npx http-server -o",
"prepublishOnly": "node create-distribution.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/julienetie/db64.git"
},
"keywords": [
"IndexeDB",
"localStorage",
"database"
],
"author": "Julien Etienne",
"license": "MIT",
"bugs": {
"url": "https://github.com/julienetie/db64/issues"
},
"homepage": "https://github.com/julienetie/db64#readme",
"devDependencies": {
"brotli-size": "^4.0.0",
"chai": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-promise": "^6.1.1",
"http-server": "^14.1.1",
"mocha": "^10.4.0",
"mocha-chrome": "^2.2.0",
"terser": "^5.26.0",
"typescript": "^5.3.3"
},
"dependencies": {
"d": "^1.0.1"
}
}