forked from atularen/ngx-monaco-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.2 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
{
"name": "@sentinel-one/ngx-monaco-editor",
"version": "9.0.1",
"description": "Monaco Code Editor For Angular (ngx-monaco-editor Fork)",
"keywords": [
"angular",
"monaco",
"monaco-editor",
"code",
"editor",
"reusable"
],
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --project=editor-tester --base-href=editor-tester",
"build:prod": "ng build --prod --project=editor-tester --base-href=editor-tester",
"lint": "ng lint",
"e2e": "ng e2e",
"build-editor": "npm run copy:readme && npm run copy:typings && ng build editor --prod && npm run copy:types && npm run copy:editor",
"npm-publish": "npm run build-editor && bash scripts/npm-publish",
"copy:typings": "cp node_modules/monaco-editor/monaco.d.ts projects/editor/src/lib",
"copy:types": "cp node_modules/monaco-editor/monaco.d.ts dist/editor",
"copy:readme": "cp -rf README.md projects/editor/",
"copy:editor": "mkdir ./dist/editor/assets && cp -rf node_modules/monaco-editor/min dist/editor/assets/monaco"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Sentinel-One/ngx-monaco-editor.git"
},
"bugs": {
"url": "https://github.com/Sentinel-One/ngx-monaco-editor/issues"
},
"author": "Atul Kumar",
"contributors": [
"Atul Kumar <[email protected]>"
],
"dependencies": {
"@angular/animations": "~9.0.6",
"@angular/common": "~9.0.6",
"@angular/compiler": "~9.0.6",
"@angular/core": "~9.0.6",
"@angular/forms": "~9.0.6",
"@angular/platform-browser": "~9.0.6",
"@angular/platform-browser-dynamic": "~9.0.6",
"@angular/router": "~9.0.6",
"core-js": "^3.2.1",
"monaco-editor": "^0.20.0",
"rxjs": "~6.5.3",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.6",
"@angular-devkit/build-ng-packagr": "~0.900.6",
"@angular/cli": "~9.0.6",
"@angular/compiler-cli": "~9.0.6",
"@angular/language-service": "~9.0.6",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"ng-packagr": "^9.0.0",
"ts-node": "~8.3.0",
"tslint": "~5.19.0",
"typescript": "~3.7.5"
}
}