forked from bleenco/bterm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.59 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.59 KB
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
{
"name": "bterm",
"version": "1.2.0",
"description": "bterm - Cross-Platform Terminal",
"main": "electron.js",
"scripts": {
"clean": "rimraf dist build",
"prestart": "npm run clean",
"start": "webpack --display-error-details --progress --watch",
"prestart:aot": "npm run clean",
"start:aot": "webpack --display-error-details --progress --env.aot --watch",
"electron": "npm run build:electron:main && electron ./build --serve",
"build:electron:main": "tsc ./src/electron.ts --outDir ./build && copyfiles package.json ./build && cd ./build && npm install --prod && electron-builder install-app-deps ./build",
"prebuild": "npm run clean",
"build": "webpack --display-error-details --progress && npm run build:electron:main",
"prebuild:prod": "npm run clean",
"build:prod": "webpack --display-error-details --env.aot -p && npm run build:electron:main",
"app": "npm run build:prod && node package.js",
"test": "karma start ./karma.conf.js",
"test:e2e": "tsc -p e2e && xvfb-maybe mocha e2e/out/app.e2e.js",
"lint": "tslint src/**/*.ts",
"pack": "electron-builder --dir",
"predist": "npm run build:prod",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bleenco/bterm.git"
},
"author": "Bleenco OSS Team <oss@bleenco.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bleenco/bterm/issues"
},
"homepage": "https://github.com/bleenco/bterm#readme",
"dependencies": {
"@angular/common": "^4.3.6",
"@angular/compiler": "^4.3.6",
"@angular/core": "^4.3.6",
"@angular/forms": "^4.3.6",
"@angular/http": "^4.3.6",
"@angular/platform-browser": "^4.3.6",
"@angular/platform-browser-dynamic": "^4.3.6",
"@angular/router": "^4.3.6",
"bulma": "^0.5.1",
"electron-log": "^2.2.9",
"electron-updater": "^2.8.9",
"electron-window-state-manager": "^0.3.2",
"font-manager": "^0.2.2",
"hterm-bundle": "^0.3.0",
"ngx-slimscroll": "^3.3.3",
"node-notifier": "^5.1.2",
"node-pty": "^0.7.0",
"reflect-metadata": "0.1.10",
"rxjs": "5.4.3",
"semver": "^5.4.1",
"shelljs": "^0.7.8",
"zone.js": "0.8.17"
},
"devDependencies": {
"7zip": "0.0.6",
"@angular/compiler-cli": "^4.3.6",
"@ngtools/webpack": "^1.6.2",
"@types/chalk": "^0.4.31",
"@types/chokidar": "^1.7.2",
"@types/fs-extra": "4.0.2",
"@types/lodash": "^4.14.74",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.28",
"@types/node-sass": "^3.10.32",
"@types/shelljs": "^0.7.4",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.2.3",
"chai": "^4.1.2",
"chalk": "^2.1.0",
"chokidar": "^1.7.0",
"circular-dependency-plugin": "^4.2.0",
"codelyzer": "^3.1.2",
"copy-webpack-plugin": "^4.0.1",
"copyfiles": "^1.2.0",
"css-loader": "^0.28.7",
"electron": "^1.7.6",
"electron-builder": "^19.27.7",
"electron-is-dev": "^0.3.0",
"electron-packager": "^9.0.1",
"electron-reload": "^1.2.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"fs-extra": "^4.0.1",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"lodash": "^4.17.4",
"mocha": "^3.5.1",
"node-sass": "^4.5.3",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.1",
"spectron": "^3.7.2",
"style-loader": "^0.18.2",
"to-string-loader": "^1.1.5",
"tslint": "^5.7.0",
"typescript": "2.5.2",
"webpack": "^3.5.6",
"webpack-merge": "^4.1.0",
"xvfb-maybe": "^0.2.1"
}
}