forked from railsware/upterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
{
"name": "black-screen",
"productName": "Black Screen",
"description": "A terminal emulator for the 21st century.",
"version": "0.0.15",
"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": {
"font-awesome": "4.6.3",
"fs-extra": "0.30.0",
"fuzzaldrin": "2.1.0",
"immutable": "3.8.1",
"jison": "0.4.17",
"lodash": "4.13.1",
"node-ansiparser": "2.1.0",
"pty.js": "shockone/pty.js",
"react": "15.1.0",
"react-dom": "15.1.0",
"rxjs": "5.0.0-beta.8",
"tinycolor2": "1.3.0"
},
"devDependencies": {
"chai": "3.5.0",
"devtron": "1.1.2",
"electron-builder": "3.25.0",
"electron-prebuilt": "1.1.3",
"mocha": "2.5.3",
"npm-check-updates": "2.6.5",
"spectron": "3.1.2",
"ts-node": "0.7.3",
"tslint": "3.10.2",
"typescript": "1.9.0-dev.20160525-1.0",
"typings": "1.0.4"
},
"scripts": {
"preinstall": "npm prune",
"pack": "npm run compile && build",
"prerelease": "npm prune --production && npm install --global electron-builder",
"release": "build --publish always",
"electron": "electron .",
"prestart": "npm install && npm run compile",
"start": "bash housekeeping/start.sh",
"test": "npm run unit-tests && npm run integration-tests",
"unit-tests": "ELECTRON_RUN_AS_NODE=1 electron $(which mocha) --require ts-node/register test/**.ts",
"integration-tests": "npm run compile && mocha",
"update-typings": "typings ls | awk '$2 ~ /.+/ {print $2}' | xargs -I {} typings i '{}' -S -A --source dt",
"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": {
"app-bundle-id": "com.github.shockone.black-screen",
"app-category-type": "public.app-category.developer-tools"
}
}