-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
67
68
69
70
71
72
73
{
"name": "@rimoe/react-monaco-editor",
"version": "4.1.3",
"description": "Monaco Editor for React, a combination of react-monaco-editor and @monaco-editor/react.",
"main": "lib/index.js",
"module": "lib/index.js",
"scripts": {
"lint": "npx eslint src",
"build": "npx babel src --out-dir lib && cp ./src/index.d.ts ./lib/",
"prepublish": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ri-moe/react-monaco-editor.git"
},
"keywords": [
"monaco",
"editor",
"react",
"vscode",
"code",
"text"
],
"author": "wuxianucw",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ri-moe/react-monaco-editor/issues"
},
"homepage": "https://github.com/Ri-moe/react-monaco-editor",
"peerDependencies": {
"monaco-editor": ">=0.20.0",
"prop-types": ">=15.7.2",
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"babel-eslint": "10.0.3",
"babel-jest": "^25.1.0",
"eslint": "6.6.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "2.4.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": false
}
],
"@babel/plugin-transform-runtime"
]
},
"dependencies": {}
}