-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
122 lines (122 loc) · 4.3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@illgrenoble/ngx-remote-desktop",
"description": "ngx-remote-desktop is an Angular2+ module for connecting to a remote desktop using the guacamole protocol",
"version": "1.4.2",
"license": "MIT",
"main": "release/index.js",
"typings": "release/index.d.ts",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --display-error-details",
"build:release": "cross-env NODE_ENV=production npm run build",
"build:package": "cross-env NODE_ENV=package npm run build",
"clean": "npm-run-all -p clean:*",
"clean:build": "rimraf build",
"clean:dist": "rimraf dist",
"clean:release": "rimraf release",
"build:ts": "tsc",
"build:aot": "ngc",
"build:sass": "node-sass -r build/ -o build/",
"build:css": "postcss --use autoprefixer dist/*.css -d dist/",
"copy:build": "cpx -v \"src/**/*\" \"build\"",
"copy:styles": "cpx -v \"build/**/*.css\" \"release\"",
"release": "npm-run-all build:release",
"package": "npm-run-all -s clean copy:build build:sass package:replace-scss package:aot build:package package:minify copy:styles clean:build",
"package:ts": "tsc --outDir release",
"package:aot": "ngc -p tsconfig-aot.json",
"package:replace-scss": "node ./config/replace-scss.js",
"package:css": "node-sass -o release/ src/themes && node-sass -o release/components src/components",
"package:minify": "uglifyjs release/index.js --source-map --compress --mangle --screw-ie8 --output release/index.min.js",
"docs": "./node_modules/.bin/compodoc src -p tsconfig.json -n 'ngx-remote-desktop' --includes additional-doc",
"docs:watch": "./node_modules/.bin/compodoc src -p tsconfig.json -n 'ngx-remote-desktop' -s -w --includes additional-doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ILLGrenoble/ngx-remote-desktop.git"
},
"author": "ILL <[email protected]>",
"bugs": {
"url": "https://github.com/ILLGrenoble/ngx-remote-desktop"
},
"homepage": "https://github.com/ILLGrenoble/ngx-remote-desktop#readme",
"keywords": [
"angularjs",
"angular",
"javascript",
"angular2",
"desktop",
"remote",
"ngx",
"guacamole"
],
"peerDependencies": {
"screenfull": "^3.3.2",
"@illgrenoble/guacamole-common-js": "0.0.1"
},
"private": false,
"devDependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "^5.1.1",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/compiler-cli": "5.0.0",
"@angular/core": "^5.2.11",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "^5.1.1",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/platform-server": "5.0.0",
"@angular/router": "5.0.0",
"@compodoc/compodoc": "^1.1.5",
"@ctrl/ngx-codemirror": "^1.1.0",
"@illgrenoble/guacamole-common-js": "0.0.1",
"@ng-bootstrap/ng-bootstrap": "^1.0.0-beta.9",
"@types/node": "^8.0.46",
"@types/zen-observable": "^0.5.3",
"angular2-notifications": "^0.7.8",
"angular2-template-loader": "^0.6.2",
"async": "^2.5.0",
"autoprefixer": "^7.1.5",
"awesome-typescript-loader": "^3.2.3",
"clean-webpack-plugin": "^0.1.17",
"codemirror": "^5.34.0",
"copy-webpack-plugin": "^4.1.1",
"core-js": "^2.5.1",
"cpx": "^1.5.0",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "^0.11.2",
"file-saver": "^1.3.3",
"html-webpack-plugin": "^2.30.1",
"micromatch": "^3.1.10",
"ngc-webpack": "^4.1.2",
"node-sass": "^4.9.4",
"npm-run-all": "^4.1.1",
"postcss": "^5.2.11",
"postcss-loader": "^1.2.2",
"protractor": "^5.4.1",
"raw-loader": "^0.5.1",
"replace": "^1.0.0",
"rxjs": "^5.5.6",
"sass-loader": "^6.0.6",
"screenfull": "^3.3.2",
"source-map-loader": "^0.2.2",
"style-loader": "^0.19.0",
"to-string-loader": "^1.1.5",
"ts-helpers": "^1.1.2",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-swimlane": "^3.0.3",
"tslint-loader": "^3.5.3",
"typescript": "^2.4.2",
"uglify-js": "^3.1.4",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-combine-loaders": "^2.0.3",
"webpack-dev-server": "^2.9.2",
"webpack-merge": "^4.1.0",
"zone.js": "^0.8.18"
}
}