forked from react-monaco-editor/react-monaco-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
66 lines (65 loc) · 1.51 KB
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-monaco-editor",
"version": "0.13.0",
"description": "Monaco Editor for React",
"main": "lib/index.js",
"files": [
"lib"
],
"jsnext:main": "src/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib dist coverage",
"lint": "eslint src",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"env",
"react",
"stage-0"
]
},
"keywords": [
"monaco",
"editor",
"react",
"vscode"
],
"authors": [
"Daniele Esposti <daniele.espsoti@gmail.com>",
"Dominik Moritz <domoritz@cs.washington.edu>",
"Leon Shi <superRaytin@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/superRaytin/react-monaco-editor/issues"
},
"homepage": "https://github.com/superRaytin/react-monaco-editor",
"repository": "https://github.com/superRaytin/react-monaco-editor",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-env": "^2.4.1",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"pre-commit": "^1.2.2",
"react": "^16.2.0",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": "^15.x || ^16.x"
},
"dependencies": {
"monaco-editor": "^0.10.1",
"prop-types": "^15.6.1"
},
"pre-commit": [
]
}