forked from railsware/upterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.52 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
{
"name": "black-screen",
"productName": "Black Screen",
"description": "A terminal emulator for the 21st century.",
"version": "0.1.32",
"main": "compiled/src/main/Main.js",
"author": "Volodymyr Shatskyi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/shockone/black-screen.git"
},
"bugs": {
"url": "https://github.com/shockone/black-screen/issues"
},
"engineStrict": true,
"engines": {
"node": ">= 6.0.0"
},
"keywords": [
"terminal",
"emulator",
"shell",
"console"
],
"dependencies": {
"@types/electron": "0.37.12-alpha",
"@types/lodash": "4.0.26-alpha",
"@types/node": "4.0.27-alpha",
"@types/pty.js": "0.2.26-alpha",
"@types/react": "0.14.26-alpha",
"font-awesome": "4.6.3",
"fs-extra": "0.30.0",
"fuzzaldrin": "2.1.0",
"immutable": "3.8.1",
"lodash": "4.13.1",
"mode-to-permissions": "0.0.2",
"node-ansiparser": "2.2.0",
"pty.js": "shockone/pty.js",
"react": "15.2.1",
"react-dom": "15.2.1",
"rxjs": "5.0.0-beta.10",
"tinycolor2": "1.4.1"
},
"devDependencies": {
"@types/chai": "3.4.27-alpha",
"@types/mocha": "2.2.26-alpha",
"@types/mock-fs": "3.6.27-alpha",
"chai": "3.5.0",
"devtron": "1.2.1",
"electron-builder": "5.12.1",
"electron-prebuilt": "1.2.6",
"mocha": "2.5.3",
"mock-fs": "3.11.0",
"npm-check-updates": "2.7.0",
"spectron": "3.2.6",
"ts-node": "0.9.3",
"tslint": "3.13.0-dev.0",
"typescript": "2.0.0-dev.20160707"
},
"scripts": {
"preinstall": "npm prune",
"pack": "npm run compile && build",
"release": "build --publish always --prerelease",
"electron": "electron .",
"prestart": "npm install && npm run compile",
"start": "bash housekeeping/start.sh",
"test": "npm run lint && npm run unit-tests && npm run integration-tests",
"unit-tests": "ELECTRON_RUN_AS_NODE=1 electron $(which mocha) --require ts-node/register $(find test -name '*_spec.ts')",
"integration-tests": "npm run compile && mocha",
"update-dependencies": "ncu -u",
"lint": "tslint `find src -name '*.ts*'`",
"cleanup": "rm -rf compiled/src",
"copy-html": "mkdir -p compiled/src/views && cp src/views/index.html compiled/src/views",
"compile": "npm run cleanup && npm run tsc && npm run copy-html",
"tsc": "tsc"
},
"license": "MIT",
"directories": {
"app": "."
},
"build": {
"appId": "com.github.shockone.black-screen",
"app-category-type": "public.app-category.developer-tools"
}
}