forked from BarakChamo/react-code-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "react-code-mirror",
"version": "1.0.0",
"description": "React.js CodeMirror component",
"main": "lib/index.js",
"scripts": {
"test": "test",
"prepublish": "babel ./src --out-dir ./lib --source-maps --presets es2015,react"
},
"browserify-global-shim": {
"react": "React",
"react-dom": "ReactDOM"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BarakChamo/react-code-mirror.git"
},
"author": "BarakChamo",
"license": "MIT",
"bugs": {
"url": "https://github.com/BarakChamo/react-code-mirror/issues"
},
"homepage": "https://github.com/BarakChamo/react-code-mirror#readme",
"dependencies": {
"codemirror": "^5.11.0"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-runtime": "^6.3.19",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"webpack": "^1.12.12"
}
}