-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "smart-data-models-validation",
"version": "0.5.1",
"description": "Smart Data Models Validation",
"keywords": [
"node",
"fiware",
"tmforum",
"datamodel",
"validator",
"ngsi"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smart-data-models/dataModels"
},
"devDependencies": {
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.2",
"textlint": "^11.2.5",
"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.29",
"textlint-rule-write-good": "^1.6.2"
},
"engines": {
"node": ">=8.6"
},
"scripts": {
"lint": "npm-run-all --continue-on-error lint:text lint:md",
"lint:text": "textlint './README.md' 'README.md' './specs/*.md' './specs/**/*.md'",
"lint:md": "remark -f 'README.md' './specs'",
"prettier": "npm-run-all --continue-on-error prettier:json prettier:text",
"prettier:json": "prettier --single-quote --trailing-comma es5 --write ./specs/**/*.json ./specs/**/*.json",
"prettier:text": "prettier '*.md' './specs/*.md' './specs/**/*.md' --tab-width 4 --print-width 80 --write --prose-wrap always"
}
}