-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "windows-1257",
"version": "3.0.4",
"description": "A robust windows-1257 encoder/decoder written in JavaScript.",
"homepage": "https://mths.be/windows-1257",
"exports": "./windows-1257.mjs",
"keywords": [
"codec",
"decoder",
"decoding",
"encoder",
"encoding",
"legacy",
"legacy-encoding",
"cp1257",
"windows-1257",
"x-cp1257"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/windows-1257.git"
},
"bugs": "https://github.com/mathiasbynens/windows-1257/issues",
"files": [
"LICENSE-MIT.txt",
"windows-1257.mjs",
"windows-1257.d.ts"
],
"types": "windows-1257.d.ts",
"scripts": {
"download": "curl https://encoding.spec.whatwg.org/index-windows-1257.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"
}
}