forked from SoftwareBrothers/adminjs-expressjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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
{
"name": "@admin-bro/express",
"version": "3.0.1",
"description": "This is an official AdminBro plugin which integrates it to expressjs framework",
"main": "index.js",
"scripts": {
"simple": "nodemon examples/simple.js",
"test": "./node_modules/.bin/mocha spec/index.js",
"lint": "./node_modules/eslint/bin/eslint.js './examples/**/*.js' './plugin.js'",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/admin-bro-expressjs.git"
},
"keywords": [
"expressjs",
"admin",
"adminbro",
"admin-panel"
],
"author": "Michał Laskowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoftwareBrothers/admin-bro-expressjs/issues"
},
"homepage": "https://github.com/SoftwareBrothers/admin-bro-expressjs#readme",
"peerDependencies": {
"admin-bro": ">=3.0.0",
"express": ">=4.16.4",
"express-formidable": "^1.2.0",
"express-session": ">=1.15.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@types/express": "^4.17.4",
"@types/mocha": "^7.0.2",
"admin-bro": ">=3.0.0",
"@admin-bro/mongoose": "^1.0.0",
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"express": "^4.16.4",
"express-formidable": "^1.2.0",
"express-session": ">=1.15.6",
"mocha": "^5.2.0",
"mongoose": "^5.3.16",
"nodemon": "^1.18.8",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"semantic-release": "^17.0.7",
"semantic-release-jira-releases-sb": "^0.7.2",
"semantic-release-slack-bot": "^1.6.2",
"@semantic-release/git": "^9.0.0",
"husky": "^4.2.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4"
}
}