-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "hterm",
"version": "1.92.1",
"description": "A reasonably correct & fast terminal emulator.",
"main": "dist/js/hterm_all.js",
"unpkg": "dist/js/hterm_all.min.js",
"repository": {
"type": "git",
"url": "https://chromium.googlesource.com/apps/libapps.git"
},
"author": "ChromiumOS Authors",
"license": "BSD-3-Clause",
"files": [
"docs",
"html/hterm.html",
"dist/js/hterm_all.js",
"dist/js/hterm_all.min.js",
"dist/js/hterm_all.min.js.map",
"README.md"
],
"bugs": {
"url": "https://hterm.org/x/newbug",
"email": "[email protected]"
},
"homepage": "https://chromium.googlesource.com/apps/libapps/+/HEAD/hterm",
"scripts": {
"prepare": "./bin/mkdist && cd dist/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": {
"@rollup/plugin-node-resolve": "~15",
"chai": "~4",
"eslint": "~8",
"mocha": "~10",
"mocha-headless-chrome": "~4",
"terser": "~5"
},
"dependencies": {
"punycode": "~2"
}
}