-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
103 lines (103 loc) · 2.87 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-markdown-editor-hybrid",
"version": "0.3.0",
"description": "A text editor component supporting Markdown and HTML using react-markdown.",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json --entry src",
"watch": "watch 'npm run build' src",
"prebuild": "npm run clean -s",
"build": "npm run demo && babel --plugins transform-class-properties --presets react,es2015 --optional runtime src -d dist",
"demo": "rimraf ./demo/demo.js && gulp demo",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaszhix/react-markdown-editor-hybrid.git"
},
"keywords": [
"react-markdown-editor-hybrid",
"react-markdown-editor",
"react-markdown-textarea",
"react-markdown",
"md",
"html",
"react-component",
"markdown",
"react",
"editor",
"preview",
"text",
"javascript",
"js",
"tool",
"utility",
"react-component",
"markdown",
"react",
"editor",
"preview",
"text"
],
"author": "Jason Hicks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaszhix/react-markdown-editor-hybrid/issues"
},
"homepage": "https://github.com/jaszhix/react-markdown-editor-hybrid",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.6.5",
"babel-eslint": "*",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.2",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"chai": "^3.4.1",
"chai-as-promised": "^5.3.0",
"coveralls": "*",
"dependency-check": "*",
"doctoc": "*",
"eslint": "*",
"exports-loader": "^0.6.3",
"gulp": "^3.9.0",
"gulp-uglifyjs": "^0.6.2",
"imports-loader": "^0.6.5",
"isparta": "*",
"jquery": "^2.2.0",
"json-loader": "^0.5.4",
"lodash": "^4.3.0",
"mocha": "^2.3.4",
"mocha-phantomjs": "^4.0.2",
"rimraf": "*",
"tap-spec": "*",
"tape": "*",
"vinyl-source-stream": "^1.1.0",
"watch": "*",
"webpack": "^1.13.1",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"object-assign": "^4.1.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-markdown": "^2.5.0"
}
}