forked from mathiasbynens/windows-1252
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.33 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
{
"name": "windows-1252",
"version": "1.0.0",
"description": "A robust windows-1252 encoder/decoder written in JavaScript.",
"homepage": "https://mths.be/windows-1252",
"main": "windows-1252.js",
"keywords": [
"codec",
"decoder",
"decoding",
"encoder",
"encoding",
"legacy",
"legacy-encoding",
"ansi_x3.4-1968",
"ascii",
"cp1252",
"cp819",
"csisolatin1",
"ibm819",
"iso-8859-1",
"iso-ir-100",
"iso8859-1",
"iso88591",
"iso_8859-1",
"iso_8859-1:1987",
"l1",
"latin1",
"us-ascii",
"windows-1252",
"x-cp1252"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/windows-1252.git"
},
"bugs": "https://github.com/mathiasbynens/windows-1252/issues",
"files": [
"LICENSE-MIT.txt",
"windows-1252.js"
],
"scripts": {
"download": "curl https://encoding.spec.whatwg.org/index-windows-1252.txt > data/index.txt",
"build": "node scripts/transform-data.js",
"test": "node tests/tests.js"
},
"devDependencies": {
"coveralls": "^2.11.6",
"grunt": "^0.4.5",
"grunt-shell": "^1.1.2",
"grunt-template": "^0.2.3",
"istanbul": "^0.4.2",
"jsesc": "^2.1.0",
"qunit-extras": "^1.4.5",
"qunitjs": "~1.11.0",
"requirejs": "^2.1.22",
"string.fromcodepoint": "^0.2.1"
}
}