forked from rexxars/commonmark-react-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "commonmark-react-renderer",
"description": "React renderer for CommonMark (rationalized Markdown)",
"version": "2.0.1",
"keywords": [
"commonmark",
"markdown",
"react",
"renderer"
],
"main": "src/commonmark-react-renderer.js",
"scripts": {
"coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter spec",
"lint": "eslint .",
"prepublish": "npm prune && npm test",
"pretest": "npm run lint",
"test": "mocha --reporter spec",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec"
},
"repository": {
"type": "git",
"url": "git@github.com:rexxars/commonmark-react-renderer.git"
},
"author": "Espen Hovlandsdal <espen@hovlandsdal.com>",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.0",
"commonmark": "^0.19.0",
"eslint": "^1.7.3",
"eslint-config-vaffel": "^3.0.0",
"eslint-plugin-react": "^3.6.3",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"peerDependencies": {
"react": ">=0.13.3"
}
}