-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.97 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
{
"name": "@bigfootds/supercamo",
"version": "1.0.6",
"description": "Camo-inspired ODM for NeDB, built specifically for BigfootDS' needs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./structures/*": null,
"./utils/*": null,
"./validators/*": null
},
"scripts": {
"dev": "ts-node ./src/index.ts",
"build:code": "tsc",
"build:docs:js": "jsdoc ./src -r -c ./jsdoc.json",
"build:docs:ts": "typedoc --options ./typedoc.json",
"dev:docs:ts": "typedoc --watch --options ./typedoc.json",
"test:js": "npm run build:code && jest ./tests/js/* --watch --config ./jest-js.config.js --runInBand",
"test:js:ci": "npm run build:code && jest ./tests/js/* --config ./jest-js.config.js --runInBand",
"test:js:cc": "npm run build:code && jest ./tests/js/* --watch --config ./jest-js.config.js --runInBand --coverage=true"
},
"repository": {
"type": "git",
"url": "https://github.com/BigfootDS/supercamo.git"
},
"keywords": [
"es6",
"odm",
"nedb",
"nosql",
"document",
"model",
"schema",
"database",
"data",
"datastore",
"query",
"db"
],
"author": {
"name": "Alex Stormwood",
"email": "alex@bigfootds.com",
"url": "https://github.com/AlexStormwood"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BigfootDS/supercamo/issues"
},
"homepage": "https://github.com/BigfootDS/supercamo#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@seald-io/nedb": "^4.0.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"clean-jsdoc-theme": "^4.3.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"ts-jest": "^29.2.4",
"typedoc": "^0.26.7",
"typedoc-github-theme": "^0.1.2",
"typedoc-plugin-merge-modules": "^6.0.1",
"typescript": "^5.5.3"
}
}