-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 2.57 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "sequelize-graphql-tools",
"version": "2.0.2",
"description": "Utils to generate graphql schema, types, querys and mutations from sequelize models",
"main": "src",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier-standard 'src/**/*.js'",
"commit": "commit",
"pretest": "npm run lint -s && npm run format -s",
"test": "echo 'no test'",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/lgaticaq/sequelize-graphql-tools.git"
},
"keywords": [
"graphql",
"sequelize"
],
"author": "Leonardo Gatica <[email protected]> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lgaticaq/sequelize-graphql-tools/issues"
},
"homepage": "https://github.com/lgaticaq/sequelize-graphql-tools#readme",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/prompt-cli": "8.3.5",
"@semantic-release/changelog": "3.0.6",
"@semantic-release/git": "7.0.18",
"@semantic-release/github": "5.5.8",
"@semantic-release/npm": "5.3.5",
"chai": "4.3.0",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"graphql": "14.7.0",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"mocha": "6.2.3",
"npm-github-config": "2.0.1",
"nyc": "14.1.1",
"nyc-config-common": "1.0.1",
"prettier-standard": "8.0.1",
"semantic-release": "15.14.0"
},
"peerDependencies": {
"graphql": ">=0.13.0",
"graphql-compose": ">=4.3.0",
"graphql-fields": ">=1.0.0",
"graphql-iso-date": ">=3.5.0",
"sequelize": ">=4.37.0"
},
"eslintConfig": {
"extends": "standard",
"rules": {
"no-console": [
"error"
]
}
},
"eslintIgnore": [
"coverage"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"linters": {
"src/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
]
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nyc": {
"extends": "nyc-config-common"
},
"renovate": {
"automerge": "minor",
"extends": [
"config:js-lib"
]
},
"release": {
"extends": "npm-github-config"
}
}