-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.21 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
{
"keywords": [
"awesome",
"fiware",
"smart-app",
"contextual-data",
"ngsi"
],
"license": "CC-BY-4.0",
"scripts": {
"test": "awesome-lint",
"precommit": "lint-staged",
"lint:text": "textlint 'README.md'",
"lint:md": "remark -f 'README.md'",
"prettier:text": "prettier 'README.md' --no-config --tab-width 2 --print-width 240 --write --prose-wrap always"
},
"devDependencies": {
"awesome-lint": "^0.15.0",
"eslint": "^7.5.0",
"eslint-config-tamia": "^7.2.5",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"memfs": "3.2.0",
"prettier": "^2.0.5",
"remark-cli": "^8.0.1",
"remark-preset-lint-consistent": "^3.0.1",
"textlint": "^11.7.6",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-terminology": "^2.1.4",
"textlint-rule-write-good": "^1.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": [
"prettier --no-config --tab-width 2 --print-width 240 --write --prose-wrap always",
"git add"
]
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-consistent"
]
}
}