-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.21 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
{
"name": "iso-8859-8",
"version": "3.0.4",
"description": "A robust iso-8859-8 encoder/decoder written in JavaScript.",
"homepage": "https://mths.be/iso-8859-8",
"exports": "./iso-8859-8.mjs",
"keywords": [
"codec",
"decoder",
"decoding",
"encoder",
"encoding",
"legacy",
"legacy-encoding",
"csiso88598e",
"csisolatinhebrew",
"hebrew",
"iso-8859-8",
"iso-8859-8-e",
"iso-ir-138",
"iso8859-8",
"iso88598",
"iso_8859-8",
"iso_8859-8:1988",
"visual"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/iso-8859-8.git"
},
"bugs": "https://github.com/mathiasbynens/iso-8859-8/issues",
"files": [
"LICENSE-MIT.txt",
"iso-8859-8.mjs",
"iso-8859-8.d.ts"
],
"types": "iso-8859-8.d.ts",
"scripts": {
"download": "curl https://encoding.spec.whatwg.org/index-iso-8859-8.txt > data/index.txt",
"build": "node scripts/transform-data.js",
"test": "node tests/tests.mjs",
"cover": "istanbul cover --report html --verbose --dir coverage tests/tests.mjs"
},
"devDependencies": {
"istanbul": "^0.4.2",
"jsesc": "^3.0.2",
"lodash.template": "^4.5.0"
}
}