This repository was archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.3 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.3 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mongoize-orm",
"version": "1.0.10",
"description": "Simplify MongoDB model persistence with a smart layer in between you and your database",
"keywords": [
"mongodb",
"sql",
"relational",
"relation",
"database",
"orm",
"nosql"
],
"repository": {
"type": "git",
"url": "https://github.com/oflynned/Mongoize-ORM"
},
"license": "ISC",
"author": "Edmond Ó Floinn <oflynned@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "yarn clean && node_modules/.bin/tsc",
"clean": "node_modules/.bin/rimraf ./dist",
"coverage:publish": "codecov",
"example:basic": "node_modules/.bin/ts-node src/example/basic.example.ts",
"example:credentials": "node_modules/.bin/ts-node src/example/credential-validation.example.ts",
"example:crud": "node_modules/.bin/ts-node src/example/crud.example.ts",
"example:limit-offset": "node_modules/.bin/ts-node src/example/limit-offset.example.ts",
"example:relational": "node_modules/.bin/ts-node src/example/relational.example.ts",
"lint:code:check": "node_modules/.bin/eslint '**/*.{js,ts}' --ignore-path .gitignore",
"lint:code:fix": "node_modules/.bin/eslint '**/*.{js,ts}' --ignore-path .gitignore --quiet --fix",
"lint:dependencies": "node_modules/.bin/ncu -e 2 --semverLevel major",
"lint:dependencies:fix": "node_modules/.bin/ncu -u --semverLevel major && yarn && git add yarn.lock package.json && git commit -m 'auto-update dependencies'",
"lint:package": "node_modules/.bin/sort-package-json",
"lint:staged": "node_modules/.bin/pretty-quick --staged",
"publish:npm": "yarn build && npm publish",
"test": "node_modules/.bin/jest -c jest.config.js",
"test:integration": "node_modules/.bin/jest -c jest.integration.config.js",
"test:unit": "node_modules/.bin/jest -c jest.unit.config.js",
"test:watch": "node_modules/.bin/jest -c jest.config.js --watch"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/bcrypt": "^3.0.0",
"@types/hapi__joi": "^16.0.12",
"@types/mongodb": "^3.5.2",
"@types/node": "^13.9.0",
"bcrypt": "^4.0.1",
"mongodb": "^3.5.5",
"mongodb-memory-server": "^6.3.3",
"uuid": "7.0.3"
},
"devDependencies": {
"@types/faker": "^4.1.10",
"@types/jest": "^25.1.3",
"@types/sinon": "^9.0.0",
"@types/uuid": "^3.4.7",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.18.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"faker": "^4.1.0",
"husky": "^3.1.0",
"jest": "^25.1.0",
"jest-config": "25.5.4",
"npm-check-updates": "^4.0.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"sinon": "^9.0.1",
"sort-package-json": "^1.40.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.8.2"
}
}