-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
63
64
65
66
67
68
69
70
71
{
"name": "camadb",
"version": "0.2.0",
"description": "A TypeScript embedded database",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"demo": "yarn build && node ./demo/test-insert.mjs",
"generate-docs": "typedoc --out docs ./src",
"browser-demo": "yarn build && cd demo/browser && yarn && yarn start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elmarti/camadb"
},
"browser": {
"fs": false,
"path": false
},
"keywords": [
"camadb",
"typescript",
"embedded database"
],
"author": "elmarti",
"license": "MIT",
"bugs": {
"url": "https://github.com/elmarti/camadb/issues"
},
"homepage": "https://www.camadb.com",
"devDependencies": {
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^8.0.0",
"@types/jest": "^26.0.15",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"dateformat": "^5.0.1",
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.0",
"fake-indexeddb": "^4.0.1",
"jest": "^26.6.0",
"prettier": "^2.3.0",
"semantic-release-gitmoji": "^1.4.2",
"ts-jest": "^26.4.1",
"typedoc": "^0.22.5",
"typescript": "^4.0.3",
"util": "^0.12.4"
},
"files": [
"dist/**/*"
],
"dependencies": {
"fast-sort": "^3.0.3",
"flatted": "^3.2.2",
"idb": "^6.1.4",
"inversify": "^5.1.1",
"loglevel": "^1.7.1",
"mingo": "^4.2.0",
"obop": "^0.2.1",
"path-browserify": "^1.0.1",
"reflect-metadata": "^0.1.13",
"sift": "^15.0.0",
"uuid": "^8.3.2"
}
}