-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "@dixeed/backend-utils",
"version": "0.0.0-development",
"description": "A set of utility functions for backend development",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dixeed/backend-utils.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": ["utils", "backend", "crypto", "mailer", "templater"],
"author": "Dixeed",
"license": "MIT",
"engines": {
"node": ">=6.6.0"
},
"lint-staged": {
"{lib,test}/**/*.{js,css,json}": [
"prettier --single-quote --write --print-width 100 --trailing-comma es5",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"files": ["lib/"],
"dependencies": {
"archiver": "2.0.3",
"bluebird": "3.5.1",
"fs-extra": "4.0.2",
"handlebars": "4.0.10",
"joi": "11.1.1",
"limax": "1.5.0",
"nodemailer": "4.1.2",
"path": "0.12.7",
"q": "1.5.0"
},
"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"
},
"publishConfig": {
"access": "public"
}
}