forked from SoftwareBrothers/adminjs-expressjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "admin-bro-expressjs",
"version": "0.1.4",
"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'"
},
"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": ">=0.2.0",
"body-parser": ">=1.18.3",
"cookie-parser": ">=1.4.3",
"express": ">=4.16.4",
"express-session": ">=1.15.6"
},
"devDependencies": {
"admin-bro": ">=0.2.0",
"admin-bro-mongoose": "^0.1.4",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"cookie-parser": ">=1.4.3",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"express": "^4.16.4",
"express-session": ">=1.15.6",
"memorystore": "^1.6.0",
"mocha": "^5.2.0",
"mongoose": "^5.3.16",
"nodemon": "^1.18.8",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0"
}
}