-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
65 lines (65 loc) · 2.36 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
{
"name": "ng-terminal-workspace",
"version": "0.0.0",
"scripts": {
"prestart": "npm run build",
"prepublish": "npm run license && npm run lib:build:prod && copyfiles README.md dist/ng-terminal",
"prepage": "npm run lib:build",
"prelocal": "npm run lib:build:prod",
"pretest": "npm run lib:travis:test",
"start": "ng serve demo",
"build": "npm run lib:build",
"test": "npm run lib:test",
"watch": "npm run lib:watch",
"publish": "cd dist/ng-terminal && npm publish",
"page": "ng build demo --configuration production --output-path docs --base-href /ng-terminal/",
"local": "cd dist/ng-terminal && npm pack",
"lib:build": "copyfiles --flat node_modules/xterm/css/xterm.css projects/ng-terminal/src/lib/global-style && ng build ng-terminal",
"lib:test": "ng test ng-terminal",
"lib:watch": "ng test ng-terminal --watch",
"lib:travis:test": "ng test ng-terminal --watch false --browsers ChromeHeadless",
"lib:build:prod": "ng build ng-terminal --configuration production",
"license": "license-checker > LICENSE-THIRD-PARTY"
},
"private": false,
"dependencies": {
"@angular/animations": "~15.2.10",
"@angular/common": "~15.2.10",
"@angular/compiler": "~15.2.10",
"@angular/core": "~15.2.10",
"@angular/forms": "~15.2.10",
"@angular/material": "^14.2.7",
"@angular/platform-browser": "~15.2.10",
"@angular/platform-browser-dynamic": "~15.2.10",
"@angular/router": "~15.2.10",
"@juggle/resize-observer": "^3.4.0",
"@xterm/addon-fit": "^0.9.0",
"@xterm/addon-web-links": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"angular-resizable-element": "^5.0.0",
"ngx-json-viewer": "^2.4.0",
"rxjs": "~6.6.0",
"tslib": "^2.3.0",
"xterm-addon-webgl": "^0.16.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.2.11",
"@angular/cli": "~15.2.11",
"@angular/compiler-cli": "~15.2.10",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"bootstrap": "^5.2.3",
"copyfiles": "^2.4.1",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"license-checker": "^25.0.1",
"ng-packagr": "^15.2.2",
"ngx-bootstrap": "^10.3.0",
"typescript": "^4.9.5"
}
}