forked from lvntruong/cip14-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@emurgo/cip14-js",
"version": "4.0.0",
"description": "A Javascript library reference implementation for CIP14",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./dist/index.js": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./dist/index.d.ts": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.ts"
},
"./dist/index.js.map": {
"import": "./dist/index.js.map",
"require": "./dist/index.js.map"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"eslint": "eslint --ext .ts,.js ./src/ --fix",
"test": "jest"
},
"husky": {
"hooks": {
"pre-push": "npm run verify"
}
},
"license": "Apache-2.0 OR MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Emurgo/cip14-js.git"
},
"author": "EMURGO",
"homepage": "https://github.com/Emurgo/cip14-js#readme",
"dependencies": {
"bech32": "^2.0.0",
"blake2b": "^2.1.4"
},
"devDependencies": {
"@types/node": "^18",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-nestjs": "^1.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
}
}