-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "@lemonpeach/sequelize-to-json-schema",
"version": "1.0.0",
"description": "Convert Sequelize models to their JSON schema representation.",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "shx rm -rf lib",
"build": "npm run clean && babel src -d lib",
"lint": "eslint src",
"test": "npm run lint && jest src",
"prepublishOnly": "npm run build",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lemonpeach/sequelize-to-json-schema.git"
},
"keywords": [
"sequelize",
"json",
"schema",
"json schema"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Lemonpeach/sequelize-to-json-schema/issues"
},
"homepage": "https://github.com/Lemonpeach/sequelize-to-json-schema#readme",
"peerDependencies": {
"sequelize": "^6.5.1"
},
"dependencies": {
"lodash": "^4.17.21",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^26.6.3",
"pg": "^8.5.1",
"semantic-release": "^17.4.2",
"sequelize": "^6.5.1",
"shx": "^0.3.3"
}
}