-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.67 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
72
73
74
75
{
"name": "docorm",
"version": "0.0.10",
"description": "Persistence layer with ORM features for JSON documents",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbi-lab/docorm.git"
},
"keywords": [
"DAO",
"JSON",
"ORM",
"persistence",
"PostgreSQL",
"semistructured"
],
"author": {
"name": "Jeremy Stone",
"email": "stoneje@msn.com"
},
"license": "MIT",
"homepage": "https://github.com/bbi-lab/docorm#readme",
"bugs": {
"url": "https://github.com/bbi-lab/docorm/issues"
},
"engines": {
"node": ">= 14.0.0"
},
"exports": {
"import": "./dist/index.js"
},
"files": [
"dist/**/*"
],
"dependencies": {
"async-mutex": "^0.3.1",
"cls-hooked": "^4.2.2",
"json-pointer": "^0.6.2",
"jsonpath-plus": "^7.2.0",
"lodash": "^4.17.21",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/cls-hooked": "^4.3.3",
"@types/json-pointer": "^1.0.31",
"@types/jsonpath-plus": "^5.0.2",
"@types/lodash": "^4.14.194",
"@types/node": "^20.2.1",
"@types/pg": "^8.6.6",
"@types/uuid": "^9.0.1",
"eslint": "^8.0.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^29.7.0",
"jsdoc": "^3.6.7",
"typescript": "^4.9.4"
},
"optionalDependencies": {
"pg": "^8.11.0",
"pg-promise": "^11.4.3",
"pg-query-stream": "^4.5.0"
},
"jest": {
"transform": {}
},
"type": "module"
}