forked from remarkjs/remark-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.69 KB
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
{
"name": "remark-react",
"description": "Compile Markdown to React with remark",
"version": "3.1.0",
"author": {
"name": "Titus Wormer",
"email": "tituswormer@gmail.com"
},
"contributors": [
"Tom MacWright <tom@macwright.org>",
"Titus Wormer <tituswormer@gmail.com>",
"Ciaran Wood <cyrzinsomnia@gmail.com>",
"Juho Vepsalainen <bebraw@gmail.com>",
"Jason Trill <jason@jasontrill.com>",
"Tsuyusato Kitsune <make.just.on@gmail.com>",
"Jeremy Stucki <jeremy@interactivethings.com>"
],
"dependencies": {
"hast-to-hyperscript": "^2.0.1",
"hast-util-sanitize": "^1.0.0",
"mdast-util-to-hast": "^1.0.0"
},
"devDependencies": {
"commonmark.json": "^0.26.0",
"eslint": "^3.9.0",
"istanbul": "^0.4.2",
"mocha": "^3.1.0",
"remark": "^6.0.0",
"remark-cli": "^2.0.0",
"remark-github": "^6.0.0",
"remark-preset-lint-consistent": "^1.0.0",
"remark-preset-lint-recommended": "^1.0.0",
"remark-toc": "^3.0.0",
"vfile": "^2.0.0"
},
"files": [
"index.js",
"LICENSE"
],
"keywords": [
"compile",
"html",
"markdown",
"remark",
"stringify"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mapbox/remark-react.git"
},
"bugs": "https://github.com/mapbox/remark-react/issues",
"scripts": {
"sub-install": "cd test/react/v0.14 && npm install && cd ../..",
"build": "remark . --output --quiet --frail",
"lint": "eslint .",
"test-api": "mocha --check-leaks test/index.js",
"test-coverage": "istanbul cover _mocha -- --check-leaks test/index.js",
"test": "npm run build && npm run lint && npm run sub-install && npm run test-coverage"
}
}