forked from chromium/hterm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "hterm",
"version": "1.91.0",
"description": "A reasonably correct & fast terminal emulator.",
"main": "js/hterm_all.js",
"unpkg": "js/hterm_all.min.js",
"repository": {
"type": "git",
"url": "https://chromium.googlesource.com/apps/libapps.git"
},
"author": "Chromium OS Authors",
"license": "BSD-3-Clause",
"files": [
"doc",
"html/hterm.html",
"js/hterm_all.js",
"js/hterm_all.min.js",
"js/hterm_all.min.js.map",
"README.md"
],
"bugs": {
"url": "https://goo.gl/vb94JY",
"email": "[email protected]"
},
"homepage": "https://chromium.googlesource.com/apps/libapps/+/HEAD/hterm",
"scripts": {
"prepare": "./bin/mkdist -o js concat/hterm_all.concat && cd js && terser hterm_all.js --compress --mangle --output hterm_all.min.js --source-map url=hterm_all.min.js.map,includeSources",
"test": "./bin/load_tests"
},
"devDependencies": {
"chai": "~4",
"eslint": "~7",
"mocha": "~8",
"mocha-headless-chrome": "~3",
"terser": "~4"
},
"dependencies": {}
}