-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
62 lines (62 loc) · 1.38 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
{
"name": "react-md-editor",
"version": "0.2.2",
"description": "React Markdown Editor",
"main": "lib/MDEditor.js",
"author": "Jed Watson",
"homepage": "https://github.com/JedWatson/react-md-editor",
"license": "MIT",
"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.5",
"codemirror": "^5.18.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"happiness": "^7.1.2",
"marked": "^0.3.6",
"react": "^15.0",
"react-component-gulp-tasks": "^0.7.7",
"react-dom": "^15.0"
},
"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"
]
}