-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
71 lines (71 loc) · 2.09 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
65
66
67
68
69
70
71
{
"name": "tutorials.step-by-step",
"description": "A series of NGSI-v2 tutorials using FIWARE Components",
"repository": {
"type": "git",
"url": "git+https://github.com/fiware/tutorials.ngsi-v2.git"
},
"bugs": {
"url": "https://github.com/fiware/tutorials.ngsi-v2/issues"
},
"homepage": "https://fiware-tutorials.rtfd.io/",
"author": "FIWARE Foundation e.V.",
"keywords": [
"node",
"fiware",
"tutorial",
"ngsi"
],
"version": "1.0.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">=16"
},
"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",
"remark-lint-no-undefined-references": "^4.2.1",
"textlint": "^12.1.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-terminology": "^2.1.5",
"textlint-rule-write-good": "^2.0.0"
},
"scripts": {
"pre-commit": "lint-staged",
"prettier": "prettier --parser flow --single-quote --trailing-comma none --write **/**/*.js **/*.js *.js",
"prettier:text": "prettier --parser markdown --single-quote --trailing-comma '*.md' 'docker/*.md' 'docs/*.md' 'tutorials.*/README.md' --tab-width 4 --print-width 120 --write --prose-wrap always --trailing-comma none",
"lint:md": "remark -f '*.md' 'docker/*.md' 'docs/*.md' 'tutorials.*/README.md'",
"lint:text": "textlint '*.md' 'docker/*.md' 'docs/*.md' 'tutorials.*/README.md'",
"prepare": "husky install"
},
"lint-staged": {
"*.md": [
"prettier --parser markdown --tab-width 4 --print-width 120 --write --prose-wrap always"
],
"*.js": [
"prettier --parser flow --single-quote --trailing-comma none --write"
],
"*.yml": [
"prettier --no-config --tab-width 4 --print-width 120 --write"
]
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended",
"remark-lint-no-undefined-references"
]
}
}