-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "base-unicode",
"version": "1.0.0",
"main": "index.js",
"module": "index.mjs",
"typings": "dist/index.d.ts",
"description": "Encodes text and binary data to a subset of Unicode plane 1 (BMP). Runs in browser and Node.js. Character compression. Makes binary data copy-pastable. URL-safe.",
"keywords": [
"base-unicode",
"compression",
"encode",
"decode",
"string",
"binary",
"typescript",
"browser",
"Node.js",
"UTF16",
"UCS-2",
"URI",
"URL-safe",
"copy-pastable"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "ts-node build.ts",
"postbuild": "tsc",
"deploy": "npm publish",
"pretest": "yarn build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyr0/base-unicode.git"
},
"author": "Aron Homberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kyr0/base-unicode/issues"
},
"homepage": "https://github.com/kyr0/base-unicode#readme",
"dependencies": {
"buffer": "^6.0.3"
},
"devDependencies": {
"brotli-wasm": "^1.2.0",
"@types/jest": "^27.5.1",
"esbuild": "^0.14.3",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}