forked from rexxars/commonmark-react-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "@hoomanlogic/commonmark-react-renderer",
"description": "React renderer for CommonMark (rationalized Markdown)",
"version": "4.3.6",
"keywords": [
"commonmark",
"markdown",
"react",
"renderer"
],
"main": "src/commonmark-react-renderer.js",
"publishConfig": {
"access": "public"
},
"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": "git+ssh://git@github.com:hoomanlogic/commonmark-react-renderer.git"
},
"author": "Espen Hovlandsdal <espen@hovlandsdal.com>",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.0",
"commonmark": "^0.31.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": {
"commonmark": "^0.31.0",
"react": ">=0.14.0"
},
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.isplainobject": "^4.0.6",
"pascalcase": "^0.1.1",
"xss-filters": "^1.2.6"
}
}