forked from SoftwareBrothers/adminjs-sequelizejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "admin-bro-sequelizejs",
"version": "0.2.2",
"description": "Sequelize adapter for AdminBro",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha spec/index.js",
"cover": "NODE_ENV=test ./node_modules/nyc/bin/nyc.js --reporter=html -x=spec -x=coverage --all=true npm test",
"sequelize": "./node_modules/.bin/sequelize",
"lint": "./node_modules/eslint/bin/eslint.js './spec/**/*.js' './src/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/admin-bro-sequelizejs.git"
},
"author": "Wojciech Krysiak",
"license": "MIT",
"peerDependencies": {
"admin-bro": ">=0.7.0",
"sequelize": ">=4"
},
"devDependencies": {
"admin-bro": ">=0.7.0",
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"factory-girl": "^5.0.4",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mongoose": "^5.3.15",
"nyc": "^12.0.2",
"pg": "^7.7.1",
"sequelize": "^4.42.0",
"sequelize-cli": "^5.4.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.3.0"
},
"dependencies": {
"escape-regexp": "0.0.1"
}
}