forked from microsoft/monaco-editor-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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": "@bfcomposer/monaco-editor-webpack-plugin",
"version": "1.7.2",
"description": "A webpack plugin for the Monaco Editor",
"main": "index.js",
"typings": "./index.d.ts",
"scripts": {
"test": "node ./node_modules/webpack/bin/webpack.js --config test/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/monaco-editor-webpack-plugin.git"
},
"keywords": [
"webpack",
"monaco",
"editor",
"loader"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/monaco-editor-webpack-plugin/issues"
},
"homepage": "https://github.com/Microsoft/monaco-editor-webpack-plugin#readme",
"peerDependencies": {
"webpack": "^4.5.0"
},
"devDependencies": {
"@bfcomposer/monaco-editor": "^0.17.2",
"css-loader": "^1.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@types/webpack": "^4.4.19"
}
}