-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 931 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 931 Bytes
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
{
"name": "@nomadinteractive/generator-sequalize",
"version": "1.0.2",
"description": "Sequlize model generator with Plopjs",
"main": "index.js",
"scripts": {
"generate-model": "plop model",
"check": "nomad-codecheck ./",
"clean": "npm run check"
},
"bin": {
"nomad-generator-sequalize": "./bin.js"
},
"repository": "github:nomadinteractive/generator-sequalize",
"author": "Nomad Interactive <hello@nomadinteractive.co>",
"license": "MIT",
"dependencies": {
"plop": "^2.5.2",
"handlebars-helpers": "^0.10.0",
"yaml": "^1.7.2"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@nomadinteractive/commitlint-config": "1.0.3",
"husky": "^3.0.9",
"@nomadinteractive/nomad-codecheck": "1.0.37"
},
"commitlint": {
"extends": [
"@nomadinteractive/commitlint-config"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run clean",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}