-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
82 lines (82 loc) · 2.15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@liquality/cryptoassets",
"version": "1.7.5",
"keywords": [
"blockchain",
"crypto",
"cryptocurrency",
"cryptocurrencies",
"cryptoassets"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/liquality/cryptoassets.git"
},
"bugs": {
"url": "https://github.com/liquality/cryptoassets/issues"
},
"homepage": "https://github.com/liquality/cryptoassets#readme",
"author": "Liquality <[email protected]>",
"module": "src/index.js",
"main": "dist/index.cjs.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/index.umd.js",
"dist/src/**/*",
"src/**/*"
],
"scripts": {
"prettier": "prettier --write --ignore .gitignore .",
"lint": "eslint . $npm_package_options_eslint",
"test": "cross-env NODE_ENV=test TS_NODE_FILES=true nyc mocha -r ts-node/register --recursive ./tests/**/*.test.ts",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"updateErc20": "node scripts/updateERC20.js",
"prepublishOnly": "npm run build"
},
"options": {
"eslint": "--ext .jsx,.ts,.tsx"
},
"dependencies": {
"bignumber.js": "^9.0.2",
"bitcoin-address-validation": "^2.2.1",
"bs58": "^4.0.1",
"cashaddrjs": "^0.4.4",
"ethereumjs-util": "^7.1.4",
"lodash": "^4.17.11"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/chai": "4.3.0",
"@types/lodash": "4.14.178",
"@types/mocha": "9.1.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"axios": "^0.27.2",
"chai": "^4.3.6",
"copy": "^0.3.2",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"mocha": "^9.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"should": "^13.2.1",
"ts-loader": "^9.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"pre-commit": [
"lint",
"build"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false
}