-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 944 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
39
{
"name": "fortune-indexeddb",
"description": "IndexedDB adapter for Fortune.",
"version": "1.2.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:fortunejs/fortune-indexeddb.git"
},
"scripts": {
"demo": "browserify test/demo.js > test/demo.build.js",
"lint": "eslint lib",
"postpublish": "npm run tag",
"tag": "git tag `npm v fortune-indexeddb version` && git push origin --tags",
"test": "npm run lint && browserify test/index.js | tape-run"
},
"dependencies": {
"msgpack-lite": "^0.1.26"
},
"devDependencies": {
"browserify": "^17.0.0",
"eslint": "^8.56.0",
"eslint-config-boss": "^1.0.6",
"fortune": "^5.5.19",
"tapdance": "^5.1.1",
"tape-run": "^11.0.0"
},
"overrides": {
"minimist": "^0.2.4"
},
"main": "lib/index.js",
"eslintConfig": {
"extends": "boss/es5"
},
"keywords": [
"indexeddb",
"adapter"
]
}