This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
forked from Ikergune/firos
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "firos",
"version": "1.0.0",
"description": "Firos helps to connect ROS-based robots to the Fiware Ecosystem.",
"keywords": [
"fiware",
"ros",
"robotics"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iml130/firos"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-tamia": "^6.0.1",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"memfs": "2.10.1",
"prettier": "^1.14.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.2",
"textlint": "^11.0.1",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-no-dead-link": "^4.4.1",
"textlint-rule-terminology": "^1.1.30",
"textlint-rule-write-good": "^1.6.2"
},
"engines": {
"node": ">=8.6"
},
"scripts": {
"start": "mkdocs serve",
"precommit": "lint-staged",
"lint:text": "textlint 'README.md' 'doc/*.md' 'doc/**/*.md'",
"lint:md": "remark -f 'README.md' 'doc'",
"prettier:text": "prettier 'README.md' 'doc/*.md' 'doc/**/*.md' --no-config --tab-width 4 --print-width 120 --write --prose-wrap always"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": [
"prettier --no-config --tab-width 4 --print-width 120 --write --prose-wrap always",
"git add"
]
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended"
]
}
}