forked from JedWatson/react-md-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.27 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
{
"name": "react-md-editor",
"version": "0.2.0",
"description": "React Markdown Editor",
"main": "lib/MDEditor.js",
"author": "Jed Watson",
"homepage": "https://github.com/JedWatson/react-md-editor",
"repository": {
"type": "git",
"url": "https://github.com/JedWatson/react-md-editor.git"
},
"bugs": {
"url": "https://github.com/JedWatson/react-md-editor/issues"
},
"dependencies": {
"classnames": "^2.2.1",
"codemirror": "^5.9.0",
"react": "^0.14.3",
"react-dom": "^0.14.3"
},
"devDependencies": {
"gulp": "^3.9.0",
"happiness": "^1.0.7",
"marked": "^0.3.5",
"react-component-gulp-tasks": "^0.7.7"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"publish:site": "gulp publish:examples",
"release": "gulp release",
"start": "gulp dev",
"test": "echo \"no tests yet\" && exit 0",
"lint": "happiness",
"watch": "gulp watch:lib"
},
"happiness": {
"ignore": [
"**/.publish/**",
"**/dist/**",
"**/lib/**"
]
},
"keywords": [
"react",
"react-component",
"codemirror",
"editor",
"code",
"wysiwyg",
"md",
"markdown"
]
}