-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
48
{
"name": "md2react",
"version": "0.8.8",
"description": "markdown to react element",
"main": "lib/index.js",
"keywords": [
"react",
"markdown",
"mdast"
],
"scripts": {
"build-test": "./node_modules/browserify/bin/cmd.js -t coffeeify --extension='.coffee' test/md2react-test.coffee -o test/bundle.js",
"test": "./node_modules/testem/testem.js ci",
"prepublish": "coffee -o lib -c src/*",
"build-playground": "browserify -t coffeeify --extension='.coffee' playground/index.coffee -o playground/bundle.js"
},
"author": "mizchi",
"license": "MIT",
"files": [
"CHANGELOG.md",
"LICENSE",
"lib"
],
"devDependencies": {
"browserify": "^8.1.3",
"chai": "^3.0.0",
"coffeeify": "^1.0.0",
"mocha": "^2.2.5",
"react": "^0.12.2",
"testem": "^0.8.5"
},
"dependencies": {
"dompurify": "^0.6.0",
"mdast": "^0.26.2",
"xmldom": "^0.1.19"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/mizchi/md2react"
},
"bugs": {
"url": "https://github.com/mizchi/md2react/issues"
},
"homepage": "https://github.com/mizchi/md2react"
}