-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 957 Bytes
/
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
{
"name": "base64x",
"author": {
"name": "Elad Yosifon",
"url": "https://github.com/elad-yosifon"
},
"homepage": "https://github.com/elad-yosifon/base64x-js",
"repository": {
"type": "git",
"url": "git://github.com/elad-yosifon/base64x-js.git"
},
"bugs": {
"url": "https://github.com/elad-yosifon/base64x-js/issues"
},
"description": "Base64 encoder/decoder with customizable lookup tables.",
"license": "Unlicense",
"private": false,
"keywords": [
"base64",
"encode",
"decode"
],
"version": "0.2.0",
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly" : "npm test"
},
"main": "dist/base64x.js",
"types": "dist/base64x.d.ts",
"dependencies": {},
"sideEffects": false,
"devDependencies": {
"@jest/globals": "^29.3.1",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}