-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 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
{
"name": "fiware-ready-iot-devices-validation",
"version": "1.0.0",
"description": "The process for commercial software to apply as 'powered by FIWARE' or 'FIWARE-Ready'",
"keywords": [
"fiware ready",
"fiware",
"validation",
"iot",
"ngsi",
"iot devices"
],
"license": "CC-BY-4.0",
"repository": {
"type": "git",
"url": "https://github.com/fiware-ops/Marketplace"
},
"homepage": "https://fiware-marketplace.readthedocs.io/",
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-tamia": "^7.2.7",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"memfs": "3.4.1",
"prettier": "^2.5.1",
"remark-cli": "^10.0.1",
"remark-preset-lint-recommended": "^6.1.2",
"textlint": "^12.1.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-no-dead-link": "^4.8.0",
"textlint-rule-terminology": "^2.1.5",
"textlint-rule-write-good": "^2.0.0"
},
"engines": {
"node": ">=16"
},
"scripts": {
"start": "mkdocs serve",
"pre-commit": "lint-staged",
"lint:text": "textlint 'README.md' 'docs/*.md' 'docs/**/*.md'",
"lint:md": "remark 'README.md' 'docs'",
"prettier:text": "prettier 'README.md' 'docs/*.md' 'docs/**/*.md' --no-config --tab-width 4 --print-width 120 --write --prose-wrap always",
"prepare": "husky install"
},
"lint-staged": {
"*.md": [
"prettier --no-config --tab-width 4 --print-width 120 --write --prose-wrap always"
]
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended"
]
}
}