-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "commonmark-react-renderer",
"description": "React renderer for CommonMark (rationalized Markdown)",
"version": "4.3.5",
"keywords": [
"commonmark",
"markdown",
"react",
"renderer"
],
"main": "src/commonmark-react-renderer.js",
"scripts": {
"coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter spec",
"lint": "eslint .",
"prepublishOnly": "npm test",
"posttest": "npm run lint",
"test": "mocha --reporter spec",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec"
},
"repository": {
"type": "git",
"url": "[email protected]:rexxars/commonmark-react-renderer.git"
},
"author": "Espen Hovlandsdal <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.0",
"commonmark": "^0.27.0",
"eslint": "^1.7.3",
"eslint-config-vaffel": "^3.0.0",
"eslint-plugin-react": "^3.6.3",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"peerDependencies": {
"react": ">=0.14.0",
"commonmark": "^0.27.0 || ^0.26.0 || ^0.24.0"
},
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.isplainobject": "^4.0.6",
"pascalcase": "^0.1.1",
"xss-filters": "^1.2.6"
}
}