-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1012 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1012 Bytes
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
{
"name": "adost",
"version": "2.3.1",
"description": "A fast postgres CRUD ORM",
"keywords": [
"adost",
"postgres",
"orm",
"fast",
"crud"
],
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest --coverage --verbose",
"docs": "jsdoc2md --template README.hbs -f ./lib/* -f ./lib/postgres/* > README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phara0h/adost.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/phara0h/adost/issues"
},
"homepage": "https://github.com/phara0h/adost#readme",
"dependencies": {
"pg": "8.1",
"pg-native": "^3.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@abeai/recho": "^1.4.0",
"cli-table": "^0.3.11",
"colors": "^1.4.0",
"dotenv": "16.0.3",
"eslint": "8.33.0",
"eslint-plugin-security": "1.7.0",
"jest": "^29.4.1",
"lodash": "^4.17.21",
"request-promise": "^4.2.5"
}
}