forked from jrnold/r4ds-exercise-solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.16 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
{
"name": "r4ds-exercise-solutions",
"version": "1.0.0",
"description": "Node dev dependencies for R for Data Science Solutions",
"license": "MIT",
"scripts": {
"test-html": "htmlhint _build/**/*.html",
"test-markdown": "remark --frail *.Rmd rmarkdown/*.Rmd README.md .github/*.md",
"test-links": "link-checker _build --http-status-ignore 302 --http-status-ignore 403 --http-status-ignore 301 --http-status-ignore 307 --http-status-ignore 303 --http-timeout 10000",
"test": "concurrently npm:test-html npm:test-markdown npm:test-links"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrnold/r4ds-exercise-solutions.git"
},
"author": "Jeffrey B. Arnold",
"bugs": {
"url": "https://github.com/jrnold/r4ds-exercise-solutions/issues"
},
"devDependencies": {
"concurrently": "^5.2.0",
"htmlhint": "^0.10.3",
"link-checker": "^1.2.1",
"remark": "^9.0.0",
"remark-cli": "^6.0.1",
"remark-frontmatter": "^1.3.2",
"remark-math": "^1.0.6",
"remark-preset-lint-consistent": "^2.0.3",
"remark-preset-lint-markdown-style-guide": "^2.1.3",
"remark-preset-lint-recommended": "^3.0.3"
}
}