-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
57 lines (57 loc) · 1.32 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-live-editor",
"version": "5.2.1",
"description": "Live editor for React components",
"files": [
"index.js",
"code-mirror-editor.js",
"live-compile.js",
"live-editor.js",
"code-mirror-highlight.js",
"code-mirror-highlighting/jsparser.js",
"code-mirror-highlighting/stringstream.js",
"code-mirror-highlighting/tokenizejs.js",
"code-mirror-highlighting/tokenizer.js"
],
"main": "index.js",
"scripts": {
"prepublish": "babel --presets es2015,react . -d . --ignore node_modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/joelburget/react-live-editor"
},
"keywords": [
"react-component",
"react",
"editor",
"component"
],
"author": "Joel Burget",
"license": "MIT",
"dependencies": {
"babel-core": "^6.10.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-template": "^6.9.0",
"codemirror": "^5.16.0"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"json-loader": "^0.5.4",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"webpack": "^1.13.1"
},
"peerDependencies": {
"react": "^15.2.1",
"react-dom": "^15.2.1"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}