-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "mercurydb",
"version": "0.0.6",
"description": "Graph database backed by IndexedDB",
"module": "dist/mercury.js",
"main": "dist/mercury.js",
"browser": "dist/mercury.umd.js",
"typings": "dist/mercury.d.ts",
"scripts": {
"start": "rollup -c -w",
"clean": "rimraf ./dist",
"prepare": "pnpm run build",
"version": "git add -A src",
"lint": "eslint --ext ts src",
"preversion": "pnpm run lint",
"prepublishOnly": "pnpm run lint",
"postversion": "git push & git push --tags",
"build": "pnpm run clean & pnpm run lint & rollup -c"
},
"license": "ISC",
"author": "Joshua Amaju <[email protected]>",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"@wessberg/rollup-plugin-ts": "^1.2.27",
"@yuloh/rollup-plugin-terser": "^0.1.1",
"eslint": "^7.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.18.1",
"rollup-plugin-uglify-es": "^0.0.1",
"terser": "^4.8.0",
"tslib": "^2.0.0",
"typescript": "^3.9.5",
"uglify-js": "^3.10.0"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "http://localhost:4873"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoshuaAmaju/WeBase.git"
},
"keywords": [
"indexeddb",
"database",
"graph",
"relationship",
"node",
"browser",
"query"
],
"bugs": {
"url": "https://github.com/JoshuaAmaju/WeBase/issues"
},
"homepage": "https://github.com/JoshuaAmaju/WeBase#readme"
}