-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
48 lines (48 loc) · 1.57 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
{
"name": "fyrirlestrar",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"present": "reveal-md --disable-auto-open",
"eslint-js": "eslint daemi fyrirlestrar",
"eslint-markdown": "eslint --ext md .",
"eslint-html": "eslint --ext html .",
"eslint": "concurrently -c \"bgBlue.yellow,bgPurple.bold,bgPink.bold\" \"npm run eslint-js -s\" \"npm run eslint-markdown -s\" \"npm run eslint-html -s\"",
"markdownlint": "markdownlint .fyrirlestrar/**/*.md README.md",
"textlint": "textlint fyrirlestrar/**/*.md",
"test": "concurrently -c \"bgBlue.bold,bgMagenta.bold,bgGreen.bold\" \"npm run eslint -s\" \"npm run markdownlint -s\" \"npm run textlint -s\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.md": ["eslint --ext md --fix", "markdownlint", "git add"]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"reveal-md": "2.4.1"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-markdown": "^1.0.0-rc.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"markdownlint-cli": "^0.13.0",
"textlint": "^11.2.1",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-apostrophe": "^1.0.0",
"textlint-rule-max-comma": "^1.0.4",
"textlint-rule-period-in-list-item": "^0.2.0",
"textlint-rule-terminology": "^1.1.30"
}
}