-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "dbmage",
"version": "0.0.2",
"description": "database abstraction layer",
"license": "MIT",
"author": "Chase Moskal <chasemoskal@gmail.com>",
"type": "module",
"main": "x/dbmage.js",
"files": [
"x",
"s"
],
"scripts": {
"build": "run-s clean compile",
"clean": "rimraf x && mkdirp x",
"compile": "tsc",
"watch": "npm run compile -s -- --watch",
"test": "cynic node x/dbmage.test.js",
"test-mongo": "cynic node x/drivers/mongo/mongo.test.js",
"test-debug": "node inspect node_modules/cynic/dist/cli.js node x/dbmage.test.js",
"test-debug-mongo": "node inspect node_modules/cynic/dist/cli.js node x/drivers/mongo/mongo.test.js"
},
"keywords": [
"database",
"abstraction",
"database-abstraction",
"crud"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chase-moskal/dbmage.git"
},
"bugs": {
"url": "https://github.com/chase-moskal/dbmage/issues"
},
"homepage": "https://github.com/chase-moskal/dbmage#readme",
"devDependencies": {
"@types/node": "^18.15.6",
"cynic": "^0.2.0",
"mkdirp": "^2.1.6",
"npm-run-all": "^4.1.5",
"rimraf": "^4.4.1",
"typescript": "^5.0.2"
},
"dependencies": {
"mongodb": "^5.1.0"
}
}