This repository has been archived by the owner on May 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 1.82 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": "xterm-addon-ligatures",
"version": "0.2.1",
"description": "Add support for programming ligatures to xterm.js",
"homepage": "https://github.com/xtermjs/xterm-addon-ligatures#readme",
"repository": {
"type": "git",
"url": "https://github.com/xtermjs/xterm-addon-ligatures.git"
},
"bugs": {
"url": "https://github.com/xtermjs/xterm-addon-ligatures/issues"
},
"engines": {
"node": ">8.0.0"
},
"main": "lib/LigaturesAddon.js",
"types": "typings/xterm-addon-ligatures.d.ts",
"scripts": {
"prepare": "node bin/download-fonts.js",
"lint": "tslint --project tsconfig.json --fix",
"prebuild": "npm run lint",
"build": "tsc",
"watch": "tsc -w",
"pretest": "npm run build",
"test": "nyc mocha lib/**/*.test.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run build"
},
"keywords": [
"font",
"ligature",
"xterm",
"xterm.js",
"terminal"
],
"license": "MIT",
"dependencies": {
"font-finder": "^1.0.4",
"font-ligatures": "^1.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^8.10.10",
"@types/sinon": "^5.0.1",
"axios": "^0.18.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"sinon": "^6.1.3",
"tslint": "^5.9.1",
"tslint-consistent-codestyle": "^1.13.0",
"typescript": "^2.8.3",
"xterm": "^3.6.0",
"yauzl": "^2.10.0"
},
"peerDependencies": {
"xterm": "^4.0.0"
},
"nyc": {
"sourceMap": true,
"reporter": [
"text",
"html",
"json"
],
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/**/*.test.*",
"lib/**/*.integration.*",
"lib/**/*.d.ts",
"lib/**/*.map*"
]
}
}