-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 1.93 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 1.93 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "compatto",
"version": "2.1.5",
"description": "Tiny and fast string compression library with Unicode support",
"license": "MIT",
"type": "module",
"main": "./cjs/index.cjs",
"exports": {
".": {
"import": "./index.js",
"require": "./cjs/index.cjs"
},
"./dictionary": {
"import": "./dictionary.js",
"require": "./cjs/dictionary.cjs"
}
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/macarie/compatto.git"
},
"bugs": {
"url": "https://github.com/macarie/compatto/issues"
},
"homepage": "https://github.com/macarie/compatto#readme",
"author": {
"name": "Raul Macarie",
"email": "raul@macarie.me",
"url": "https://macarie.me"
},
"engines": {
"node": ">=11"
},
"scripts": {
"test:xo": "xo",
"test:ava": "c8 ava --verbose",
"test": "run-p -s test:*",
"coverage": "c8 report --reporter=text-lcov | codecov --pipe --disable=gcov",
"transpile": "esbuild --format=cjs --platform=node --outdir=cjs --out-extension:.js=.cjs ./index.js ./dictionary.js"
},
"files": [
"index.js",
"index.d.ts",
"dictionary.js",
"dictionary.d.ts",
"cjs/index.cjs",
"cjs/dictionary.cjs"
],
"keywords": [
"smaz",
"data",
"string",
"strings",
"archive",
"gzip",
"zip",
"tar",
"compress",
"compression",
"decompress",
"decompression",
"dictionary",
"minify",
"minifier",
"browser"
],
"devDependencies": {
"ava": "^3.15.0",
"c8": "^7.7.1",
"codecov": "^3.8.1",
"esbuild": "^0.11.16",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"xo": "^0.39.1"
},
"xo": {
"prettier": true,
"rules": {
"unicorn/import-index": [
"off"
],
"import/extensions": [
"off"
],
"import/no-useless-path-segments": [
"off"
],
"unicorn/no-fn-reference-in-iterator": [
"off"
]
},
"ignores": [
"*.ts"
]
},
"prettier": {
"semi": false,
"bracketSpacing": true,
"useTabs": true,
"endOfLine": "lf"
}
}