forked from railsware/upterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.88 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
{
"name": "upterm",
"productName": "Upterm",
"description": "A terminal emulator for the 21st century.",
"version": "0.2.161",
"main": "compiled/src/main/Main.js",
"author": "Volodymyr Shatskyi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/railsware/upterm.git"
},
"bugs": {
"url": "https://github.com/railsware/upterm/issues"
},
"engineStrict": true,
"engines": {
"node": ">= 6.0.0"
},
"keywords": [
"terminal",
"emulator",
"shell",
"console"
],
"dependencies": {
"child-process-promise": "2.2.1",
"chokidar": "1.7.0",
"dirStat": "0.0.2",
"font-awesome": "4.7.0",
"fs-extra": "3.0.1",
"immutable": "3.8.1",
"klaw": "2.0.0",
"lodash": "4.17.4",
"mode-to-permissions": "0.0.2",
"node-ansiparser": "2.2.0",
"node-pty": "0.6.8",
"react": "15.6.1",
"react-dom": "15.6.1",
"tinycolor2": "1.4.1",
"uuid": "3.1.0"
},
"devDependencies": {
"@types/chai": "4.0.1",
"@types/chokidar": "1.7.0",
"@types/enzyme": "2.8.1",
"@types/fs-extra": "3.0.3",
"@types/klaw": "1.3.2",
"@types/lodash": "4.14.68",
"@types/mocha": "2.2.41",
"@types/node": "8.0.9",
"@types/react": "15.0.35",
"@types/webdriverio": "4.8.0",
"chai": "4.0.2",
"concurrently": "3.5.0",
"cpx": "1.5.0",
"cross-env": "5.0.1",
"devtron": "1.4.0",
"electron": "1.7.2",
"electron-builder": "19.13.0",
"electron-mocha": "4.0.0",
"enzyme": "2.9.1",
"mkdirp": "0.5.1",
"mocha": "3.4.2",
"npm-check-updates": "2.12.1",
"react-addons-test-utils": "15.6.0",
"rimraf": "2.6.1",
"spectron": "3.7.2",
"ts-node": "3.2.0",
"tslint": "5.5.0",
"typescript": "2.4.1"
},
"scripts": {
"preinstall": "npm prune",
"postinstall": "electron-builder install-app-deps",
"pack": "build",
"electron": "electron .",
"prestart": "npm install && npm run compile",
"start": "concurrently --kill-others -s first \"tsc --watch\" \"cross-env NODE_ENV=development npm run electron\"",
"test": "npm run lint && npm run compile && npm run unit-tests && npm run ui-tests && npm run integration-tests",
"unit-tests": "electron-mocha --require ts-node/register $(find test -name '*_spec.ts')",
"ui-tests": "electron-mocha --require ts-node/register $(find test -name '*_spec.tsx')",
"integration-tests": "electron-mocha --require ts-node/register test/e2e.ts",
"update-dependencies": "ncu -u",
"lint": "tslint `find src -name '*.ts*'` `find test -name '*.ts*'`",
"cleanup": "rimraf compiled/src",
"copy-html": "mkdirp compiled/src/views && cpx src/views/index.html compiled/src/views",
"compile": "npm run cleanup && npm run tsc && npm run copy-html",
"tsc": "tsc"
},
"license": "MIT",
"build": {
"appId": "com.github.railsware.upterm",
"linux": {
"icon": "icons"
}
}
}