forked from sonicdoe/detect-character-encoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1004 Bytes
/
package.json
File metadata and controls
64 lines (64 loc) · 1004 Bytes
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": "detect-character-encoding",
"version": "0.5.1",
"author": "Jakob Krigovsky <jakob@krigovsky.com>",
"description": "Detect character encoding using ICU.",
"repository": {
"type": "git",
"url": "https://github.com/sonicdoe/detect-character-encoding.git"
},
"keywords": [
"detect",
"character",
"encoding",
"charset",
"icu"
],
"license": "BSD-2-Clause",
"files": [
"vendor/icu",
"binding.gyp",
"config.gypi",
"icuWrapper.cpp",
"index.js",
"LICENSE"
],
"scripts": {
"test": "xo && mocha"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.0.9"
},
"devDependencies": {
"mocha": "^3.2.0",
"xo": "^0.18.2"
},
"engines": {
"node": ">=4"
},
"xo": {
"globals": [
"describe",
"context",
"it",
"specify",
"before",
"after",
"beforeEach",
"afterEach"
],
"rules": {
"keyword-spacing": [
"error",
{
"after": false
}
],
"space-before-function-paren": [
"error",
"never"
]
}
}
}