-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.6 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
{
"name": "@dixeed/hapi-starter-kit",
"version": "0.0.0-development",
"description": "A starter kit for Dixeed projects using HapiJs server.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dixeed/hapi-starter-kit.git"
},
"scripts": {
"cm": "git-cz",
"commitmsg": "commitlint -e",
"precommit": "lint-staged",
"test": "mocha --reporter spec",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"hapi",
"starter-kit",
"sequelize",
"good",
"fixtures-loading",
"server-gui"
],
"author": "Dixeed",
"license": "MIT",
"engines": {
"node": ">=6.11.4"
},
"lint-staged": {
"test/**/*.{js,css,json}": [
"prettier --single-quote --write --print-width 100 --trailing-comma es5",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"chalk": "2.1.0",
"clui": "0.3.6",
"good": "7.3.0",
"hapi": "16.6.2",
"hapi-sequelize": "3.0.4",
"ora": "1.3.0",
"sequelize": "3.30.4"
},
"devDependencies": {
"@commitlint/cli": "4.1.0",
"@commitlint/config-angular": "3.1.1",
"@dixeed/eslint-config": "1.2.0",
"chai": "4.1.2",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"eslint": "4.8.0",
"expect-to-be-a-promise": "1.0.2",
"husky": "0.14.3",
"lint-staged": "4.2.3",
"mocha": "4.0.0",
"prettier": "1.7.4",
"semantic-release": "^8.0.3",
"sqlite3": "3.1.13"
},
"publishConfig": {
"access": "public"
}
}