-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 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
50
{
"name": "sequelize-to-json-schema",
"version": "0.3.0",
"description": "Flexible json-schema generator from sequelize models",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha -w test/**/*.test.js",
"test:ci": "mocha test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raisely/sequelize-to-json-schema.git"
},
"keywords": [
"json-schema",
"sequelize"
],
"author": "Agency Ventures",
"contributors": [
{
"name": "Chris Jensen",
"email": "[email protected]"
}
],
"license": "JWL",
"bugs": {
"url": "https://github.com/raisely/sequelize-to-json-schema/issues"
},
"homepage": "https://github.com/raisely/sequelize-to-json-schema#readme",
"dependencies": {
"lodash": "^4.17.5",
"pluralize": "^7.0.0"
},
"devDependencies": {
"babel-eslint": "^6.0.0",
"chai": "^4.1.2",
"chai-shallow-deep-equal": "^1.4.6",
"chai-subset": "^1.6.0",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"mocha": "^5.1.0"
},
"peerDependencies": {
"sequelize": "^3.31.2"
}
}