-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.66 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
76
77
78
{
"name": "arroyo-erp-models",
"version": "1.4.2",
"description": "Models for arroyo erp",
"main": "index.js",
"packageManager": "pnpm@9.7.1",
"scripts": {
"test": "jest --coverage",
"lint": "eslint **/*.js --ignore-pattern node_modules/"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"lint --fix",
"test"
]
},
"files": [
"models",
"config",
"LICENSE",
"README.md",
"mongoose-connect.js"
],
"author": "Eduardo Parra Mazuecos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/soker90/arroyo-erp-models.git"
},
"dependencies": {
"bcrypt": "^5.0.1",
"bluebird": "3.7.2",
"mongodb-memory-server": "^10.0.0",
"mongoose": "^8.0.0",
"mongoose-connect": "0.0.3"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^28.2.0",
"jest": "^29.0.0",
"jest-circus": "^29.0.0",
"jest-environment-node": "^29.0.0",
"pre-commit": "1.2.2"
},
"jest": {
"bail": true,
"testEnvironment": "<rootDir>/test/mongo-test-environment",
"setupFilesAfterEnv": [
"<rootDir>/test/bootstrap-jest.js"
],
"coverageReporters": [
"json",
"text-summary",
"lcov",
"clover"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/models/**"
],
"coveragePathIgnorePatterns": [],
"testRunner": "jest-circus/runner"
},
"keywords": [
"database",
"mongodb"
],
"config": {
"mongodbMemoryServer": {
"version": "4.4.29"
}
}
}