forked from JedWatson/react-codemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.56 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
{
"name": "react-codemirror",
"version": "1.0.0",
"description": "Codemirror",
"main": "lib/Codemirror.js",
"author": "Jed Watson",
"license": "MIT",
"homepage": "https://github.com/JedWatson/react-codemirror",
"repository": {
"type": "git",
"url": "https://github.com/JedWatson/react-codemirror.git"
},
"bugs": {
"url": "https://github.com/JedWatson/react-codemirror/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"codemirror": "^5.18.2",
"create-react-class": "^15.5.1",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.5.4"
},
"devDependencies": {
"gulp": "^3.9.1",
"happiness": "^7.1.2",
"react": "^15.5.3",
"react-component-gulp-tasks": "^0.7.7",
"react-dom": "^15.5.3"
},
"peerDependencies": {
"react": ">=15.5 <16",
"react-dom": ">=15.5 <16"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"bump": "gulp bump",
"bump:minor": "gulp bump:minor",
"bump:major": "gulp bump:major",
"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/**"
]
},
"readmeFilename": "README.md",
"keywords": [
"react",
"react-component",
"codemirror",
"editor",
"code"
]
}