-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "@web3pack/base-x",
"version": "1.0.2",
"description": "A modern base-x encoding library implemented in TypeScript with minimal dependencies for use in browser and Node.js.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"base2",
"base16",
"base45",
"base58",
"encode",
"encoding",
"decode",
"decoding",
"crypto",
"crytography"
],
"author": "Evren Ceyhan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Web3Pack/base-x.git"
},
"bugs": {
"url": "https://github.com/Web3Pack/base-x/issues"
},
"homepage": "https://github.com/Web3Pack/base-x#readme",
"scripts": {
"build": "npm run clean & tsc",
"clean": "rm -rf ./dist",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run build & npm run test"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}