-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
{
"version": "1.2.0",
"name": "nano-block-essentials",
"description": "A block toolkit for Nano using TypeScript.",
"files": [
"/dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"prepublishOnly": "npm test",
"prepare": "npm run build",
"test": "jest --runInBand"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^15.12.5",
"@types/validator": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.5.1",
"jest-mock-extended": "^2.0.5",
"prettier": "2.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.3.4"
},
"dependencies": {
"bignumber.js": "^9.0.2",
"blakejs": "^1.1.1",
"typescript-chained-error": "^1.6.0",
"zod": "^3.11.6"
},
"repository": {
"type": "git",
"url": "https://github.com/Exxenoz/nano-block-essentials.git"
},
"author": "Andreas Titan",
"license": "MIT",
"keywords": [
"nanocurrency",
"nano",
"block",
"essentials",
"factory",
"crypto",
"currency",
"cryptocurrency"
]
}