-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.38 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
83
84
85
86
87
{
"name": "everpay",
"version": "1.5.0",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"files": [
"cjs",
"esm",
"umd"
],
"repository": "[email protected]:everFinance/everpay-js.git",
"keywords": [
"everPay",
"ethereum",
"arweave",
"js",
"blockchain",
"crypto"
],
"description": "everPay client JS-SDK, supports web and nodeJS to make everPay payments",
"author": "everFinance Team <[email protected]>",
"contributors": [
"Xaber <[email protected]>"
],
"license": "MIT",
"scripts": {
"lint": "eslint src test",
"test": "jest",
"build": "rm -rf ./esm && rm -rf ./cjs && tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && rollup -c rollup.config.js --bundleConfigAsCjs",
"prepublish": "npm run build"
},
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-strip": "^3.0.2",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^26.0.24",
"@types/keccak": "^3.0.1",
"@types/node": "^16.4.0",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.3",
"babel-jest": "^27.0.6",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"rollup": "^3.14.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/crypto-js": "^4.2.1",
"@types/lodash": "^4.14.180",
"arweave": "1.11.9",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"crypto-js": "^4.1.1",
"ethers": "^5.4.6",
"keccak": "^3.0.2",
"lodash": "^4.17.21",
"query-string": "^7.0.1",
"uuid": "^8.3.2",
"@permaweb/aoconnect": "^0.0.48",
"arseeding-arbundles": "^0.6.27"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint",
"git add"
]
}
}