forked from remarkjs/react-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.85 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
62
63
64
65
66
{
"name": "react-markdown",
"description": "Renders Markdown as React components",
"version": "2.5.0",
"keywords": [
"commonmark",
"markdown",
"react",
"react-component"
],
"main": "src/react-markdown.js",
"umd": "umd/react-markdown.js",
"scripts": {
"build": "NODE_ENV=production webpack && NODE_ENV=production webpack --config webpack.config.demo.js",
"coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter spec",
"deploy": "gh-pages-deploy",
"lint": "eslint .",
"prepublish": "in-publish && npm run qa || not-in-publish",
"posttest": "npm run lint",
"qa": "npm prune && npm test && npm run build",
"test": "mocha --reporter spec",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec",
"watch": "webpack --config webpack.config.demo.js --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:rexxars/react-markdown.git"
},
"author": "Espen Hovlandsdal <rexxars@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/react": "^15.0.21",
"buble-loader": "^0.4.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-vaffel": "^5.0.0",
"eslint-plugin-react": "^6.10.3",
"gh-pages-deploy": "^0.4.2",
"istanbul": "^0.4.4",
"jsdom": "^9.12.0",
"json-loader": "^0.5.4",
"lodash.assign": "^4.0.9",
"mocha": "^3.2.0",
"mocha-jsdom": "^1.1.0",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"webpack": "^1.13.1"
},
"gh-pages-deploy": {
"noprompt": true,
"prep": [
"build"
],
"staticpath": "demo/dist"
},
"dependencies": {
"commonmark": "^0.24.0",
"commonmark-react-renderer": "^4.2.4",
"in-publish": "^2.0.0",
"prop-types": "^15.5.1"
},
"types": "./react-markdown.d.ts",
"peerDependencies": {
"react": ">=0.13.3"
}
}