-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 KB
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
{
"name": "flowize",
"version": "0.0.3",
"description": "Generate FlowJs Types from Sequelize model definitions",
"main": "index.js",
"scripts": {
"release": "standard-version",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ridakk/flowize.git"
},
"keywords": [
"FlowJs",
"Flow",
"Sequelize",
"Types"
],
"author": "Kadir Goktas",
"license": "MIT",
"bugs": {
"url": "https://github.com/ridakk/flowize/issues"
},
"homepage": "https://github.com/ridakk/flowize#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-bundle": "^1.0.5",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.8",
"standard-version": "^9.1.0"
},
"dependencies": {
"dot": "^1.1.3",
"prettier": "2.2.1"
}
}