-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.28 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
{
"name": "@cto.af/unicode-trie",
"version": "2.0.2",
"description": "Quick fork of unicode-trie for modernity",
"type": "module",
"exports": {
".": {
"default": "./index.js",
"types": "./types/index.d.ts"
},
"./builder": {
"default": "./builder.js",
"types": "./types/builder.d.ts"
}
},
"scripts": {
"test": "c8 mocha",
"lint": "eslint .",
"types": "tsc",
"examples": "cd examples && node genLineBreak.js",
"build": "npm run examples && npm run lint && npm run types && npm run test"
},
"keywords": [
"unicode",
"properties",
"icu",
"trie",
"compressed",
"brotli"
],
"author": "Devon Govett <[email protected]>",
"contributors": [
"Joe Hildebrand <[email protected]>",
"valadaptive <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cto-af/unicode-trie.git"
},
"license": "MIT",
"dependencies": {
"fflate": "^0.8.2"
},
"devDependencies": {
"@cto.af/eslint-config": "5.1.13",
"@types/node": "22.13.9",
"c8": "10.1.3",
"eslint": "9.21.0",
"eslint-plugin-mocha": "10.5.0",
"mocha": "11.1.0",
"typescript": "5.8.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}