-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (66 loc) · 1.57 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
{
"name": "cosa",
"version": "9.0.0",
"description": "Cosa Models for MongoDB",
"main": "lib/index.js",
"type": "module",
"engines": {
"node": ">=18",
"yarn": ">=1.2.1"
},
"scripts": {
"lint": "esw . --ext .js",
"lint:fix": "yarn lint --fix",
"lint:watch": "yarn lint --watch",
"lint:changed": "lint-staged",
"reinstall": "rm -rf node_modules && yarn install",
"test": "NODE_ENV='test' COSA_DB_URI='mongodb://localhost:27017/test' mocha",
"test-debug": "yarn test --debug-brk",
"doc": "documentation build lib/index.js -f md --github > API.md"
},
"author": "Losant <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Losant/cosa/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Losant/cosa.git"
},
"lint-staged": {
"*.js": "esw"
},
"files": [
"lib"
],
"dependencies": {
"clone": "^2.1.2",
"debug": "^4.3.6",
"error": "^7.0.2",
"etag": "^1.8.1",
"joi": "^17.13.3",
"mongodb": "~6.8.0",
"object-path": "^0.11.8",
"omnibelt": "^4.0.0"
},
"devDependencies": {
"@losant/eslint-config-losant": "^1.6.1",
"husky": "^9.1.5",
"lint-staged": "~15.2.9",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"chai-datetime": "^1.8.0",
"documentation": "^14.0.2",
"mocha": "^10.7.3",
"string-template": "^1.0.0"
},
"eslintConfig": {
"extends": "@losant/eslint-config-losant/env/esm"
},
"mocha": {
"require": "chai",
"reporter": "spec",
"ui": "bdd",
"check-leaks": true
}
}