-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "fiware-catalogue",
"version": "7.4.0",
"description": "Source code for all Generic Enablers which make up the FIWARE Platform",
"keywords": [
"node",
"fiware",
"contextual-data",
"iot-agent",
"smart-app",
"generic-enablers"
],
"license": "CC-BY-4.0",
"repository": {
"type": "git",
"url": "https://github.com/FIWARE/catalogue"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-tamia": "^6.2.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^1.3.1",
"lint-staged": "^7.3.0",
"memfs": "2.10.1",
"prettier": "^1.19.1",
"remark-cli": "^11.0.0",
"remark-preset-lint-recommended": "^3.0.3",
"textlint": "^11.6.1",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-terminology": "^1.1.30",
"textlint-rule-write-good": "^1.6.2"
},
"engines": {
"node": ">=10"
},
"scripts": {
"precommit": "lint-staged",
"prettier:text": "prettier 'README.md' '*/README.md' --parser markdown --tab-width 4 --print-width 120 --write --prose-wrap always",
"lint:md": "remark -f 'README.md' '*/README.md'",
"lint:text": "textlint 'README.md' '*/README.md'",
"test": "textlint 'README.md' '*/README.md'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": [
"prettier --parser markdown --tab-width 4 --print-width 120 --write --prose-wrap always",
"git add"
]
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended"
]
}
}