-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "@booljs/sequelize",
"version": "0.2.4",
"description": "Sequelize driver for BoolJS",
"main": "index.js",
"license": "GPL-3.0",
"scripts": {
"pretest": "eslint \"**/*.js\"",
"test": "cross-env NODE_ENV=test mocha --exit --timeout 5000 test/_.js test/*"
},
"keywords": [
"bool.js",
"sequelize",
"driver"
],
"author": {
"name": "Pablo Andrés Dorado Suárez",
"email": "[email protected]",
"url": "https://pablodorado.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoolJS/booljs-sequelize.git"
},
"bugs": {
"url": "https://github.com/BoolJS/booljs-sequelize/issues"
},
"homepage": "https://github.com/BoolJS/booljs-sequelize#readme",
"peerDependencies": {
"@booljs/api": "0.6.x",
"sequelize": "^4.41.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.0.1",
"supertest": "^3.4.2"
},
"publishConfig": {
"access": "public"
}
}