forked from SoftwareBrothers/adminjs-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "@admin-bro/mongoose",
"version": "1.1.0",
"description": "Mongoose adapter for admin-bro",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"dev": "rm -rf lib && tsc --watch",
"build": "rm -rf lib && tsc",
"test": "jest --config ./test/jest.json --runInBand",
"cover": "jest --config ./test/jest.json --runInBand --coverage",
"lint": "eslint './test/**/*.ts' './src/**/*.ts'",
"check:all": "yarn lint && yarn build && yarn test",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/admin-bro-mongoose.git"
},
"author": "Wojciech Krysiak",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoftwareBrothers/admin-bro-mongoose/issues"
},
"homepage": "https://github.com/SoftwareBrothers/admin-bro-mongoose#readme",
"peerDependencies": {
"admin-bro": ">=3.3.1",
"mongoose": ">=5"
},
"dependencies": {
"escape-regexp": "0.0.1",
"flat": "^4.1.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.14",
"@types/mongoose": "^5.7.36",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"admin-bro": "^3.3.1",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"factory-girl": "^5.0.4",
"husky": "^4.2.5",
"jest": "^26.5.3",
"mongoose": "^5.9.7",
"semantic-release": "^17.0.7",
"semantic-release-slack-bot": "^1.6.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}