-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "orchestracities-charts",
"version": "0.0.1",
"description": "Helm Charts for orchestracities",
"keywords": [
"node",
"fiware",
"ngsi"
],
"license": "APACHE 2.0",
"author": "Federico Facca <name.surname@martel-innovate.com> (https://martel-innovate.com)",
"contributors": [
"Tomas Aliaga <name.surname@martel-innovate.com> (https://martel-innovate.com)"
],
"repository": {
"type": "git",
"url": "https://github.com/orchestracities/charts"
},
"devDependencies": {
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.2"
},
"engines": {
"node": ">=8.6"
},
"scripts": {
"lint:text": "textlint 'README.md' './charts/**/*.MD' './charts/**/*.md'",
"lint:md": "remark -f 'README.md' './charts/**/*.MD' './charts/**/*.md'",
"precommit": "lint-staged",
"prettier:text": "prettier './*.md' './charts/**/*.MD' './charts/**/*.md' --tab-width 4 --print-width 80 --write --prose-wrap always"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": [
"prettier --tab-width 4 --print-width 80 --write --prose-wrap always",
"git add"
]
}
}