-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 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
{
"name": "simple-yenc",
"version": "1.0.4",
"description": "Minimalist yEnc and dynEncode encoder and decoder library for browser and NodeJS",
"main": "./dist/index.js",
"module": "./dist/esm.js",
"type": "module",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm.js"
}
},
"sideEffects": false,
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest --maxWorkers=100%",
"build": "rollup -c --bundleConfigAsCjs",
"format": "prettier --cache --write '**/*.js' --write 'package.json'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eshaz/simple-yenc.git"
},
"author": "Ethan Halsall",
"license": "MIT",
"bugs": {
"url": "https://github.com/eshaz/simple-yenc/issues"
},
"homepage": "https://github.com/eshaz/simple-yenc#readme",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/eshaz"
},
"keywords": [
"yEnc",
"yEncode",
"dynEnc",
"dynEncode",
"Dynamic Encode",
"Binary Encoding"
],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"prettier": "^3.2.1",
"rollup": "^4.9.5",
"simple-yenc": "file:./"
}
}