-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 784 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 784 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
{
"name": "detect-character-encoding",
"version": "0.9.0",
"author": "Jakob Krigovsky <jakob@krigovsky.com>",
"description": "Detect character encoding using ICU",
"repository": "sonicdoe/detect-character-encoding",
"keywords": [
"detect",
"character",
"encoding",
"charset",
"icu"
],
"license": "BSD-2-Clause",
"files": [
"binding.gyp",
"config.gypi",
"icuWrapper.cpp",
"index.js",
"vendor/icu"
],
"scripts": {
"test": "clang-format --Wclang-format-violations --Werror --dry-run icuWrapper.cpp && xo && mocha"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.18.0"
},
"devDependencies": {
"clang-format": "^1.8.0",
"mocha": "^10.2.0",
"xo": "^0.28.0"
},
"engines": {
"node": ">=18"
},
"xo": {
"envs": [
"mocha"
]
}
}