forked from railsware/upterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "black-screen",
"version": "0.0.1",
"description": "A terminal emulator for the 21st century.",
"main": "src/main/main.js",
"authors": [
"Volodymyr Shatsky <[email protected]>",
"Konstantin Azizov <[email protected]>",
"Volodymyr Barna <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/shockone/black-screen.git"
},
"bugs": {
"url": "https://github.com/shockone/black-screen/issues"
},
"keywords": [
"terminal",
"emulator",
"shell",
"console"
],
"dependencies": {
"font-awesome": "4.4.0",
"fuzzaldrin": "2.1.0",
"jison": "0.4.15",
"jquery": "2.1.4",
"lodash": "3.10.1",
"node-ansiparser": "2.0.2",
"octicons": "2.4.1",
"ptyw.js": "^0.3.2",
"react": "0.13.3",
"react-json-inspector": "5.2.1",
"rx": "3.1.2"
},
"devDependencies": {
"babel": "5.8.23",
"babel-core": "5.8.25",
"bower": "1.5.2",
"chai": "3.3.0",
"chai-things": "0.2.0",
"del": "2.0.2",
"electron-packager": "5.1.0",
"electron-prebuilt": "0.33.0",
"electron-rebuild": "^1.0.0",
"gulp": "3.9.0",
"gulp-babel": "5.2.1",
"gulp-cached": "1.1.0",
"gulp-concat": "2.6.0",
"gulp-livereload": "3.8.0",
"gulp-load-plugins": "1.0.0-rc.1",
"gulp-notify": "2.2.0",
"gulp-react": "3.0.1",
"gulp-sass": "2.0.4",
"gulp-shell": "0.4.3",
"gulp-typescript": "2.9.0",
"gulp-util": "3.0.6",
"mocha": "2.3.3",
"node-gyp": "3.0.3",
"react-tools": "0.13.3",
"run-sequence": "1.1.3",
"typescript": "1.6.2",
"webdriverio": "3.2.4"
},
"scripts": {
"preinstall": "npm prune",
"postinstall": "bower prune; bower install; electron-rebuild",
"start": "gulp",
"package": "electron-packager . 'Black Screen' --overwrite --platform=darwin --arch=x64 --version='0.33.0' --out='/Applications' --icon='./icon.icns'",
"test": "gulp typescript; gulp compile-tests; electron run-tests.js"
},
"license": "MIT"
}