-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "sixel",
"version": "0.16.0",
"description": "Sixel image format for node and browser.",
"main": "./lib/index.js",
"scripts": {
"test": "mocha lib/*.test.js",
"tsc": "tsc",
"watch": "tsc -w",
"lint": "tslint 'src/**/*.ts'",
"start": "npm run bundle && http-server",
"prepublish": "npm run build-all",
"coverage": "nyc --reporter=lcov --reporter=text --reporter=html npm test",
"benchmark": "xterm-benchmark $*",
"build-wasm": "bin/install_emscripten.sh && cd wasm && ./build.sh && cd .. && node bin/wrap_wasm.js",
"bundle": "tsc --project tsconfig.esm.json && webpack",
"clean": "rm -rf lib lib-esm dist src/wasm.ts wasm/decoder.wasm wasm/settings.json",
"build-all": "npm run build-wasm && npm run tsc && npm run bundle"
},
"keywords": [
"sixel",
"image",
"terminal"
],
"repository": {
"type": "git",
"url": "https://github.com/jerch/node-sixel.git"
},
"author": "Joerg Breitbart <[email protected]>",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/mocha": "^9.1.1",
"@types/node": "^14.17.12",
"canvas": "^2.9.1",
"http-server": "^14.1.0",
"mocha": "^9.2.2",
"node-ansiparser": "^2.2.0",
"nyc": "^15.1.0",
"open": "^8.4.0",
"rgbquant": "^1.1.2",
"source-map-loader": "^3.0.1",
"source-map-support": "^0.5.21",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^4.4.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"xterm-benchmark": "^0.3.1"
}
}