-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.14 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
{
"name": "@spheron/desub-js",
"version": "2.6.8",
"type": "module",
"description": "Typescript library for working with the decentralised subscription contracts in Spheron",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Spheron Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/spheronFdn/desub-js/issues"
},
"homepage": "https://github.com/spheronFdn/desub-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/spheronFdn/desub-js.git"
},
"keywords": [
"Spheron",
"Network",
"Hosting",
"Storage",
"Typescript",
"Badass",
"Payment"
],
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --quiet --fix",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different 'src/**/*.ts'",
"prettier:write": "npm run prettier:base -- --write 'src/**/*.ts'",
"test": "mocha -r ts-node/register 'src/**/*.test.ts'",
"build:clean": "rm -rf ./build",
"build:dry": "tsc -noEmit -p ./tsbuild.json",
"build": "rm -rf ./build && tsc -p ./tsbuild.json"
},
"dependencies": {
"@biconomy/mexa": "3.0.6",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"axios": "^0.21.1",
"chai-bignumber": "^3.0.0",
"dotenv": "^10.0.0",
"lodash.clonedeep": "^4.5.0",
"ethers": "5.7.1"
},
"peerDependencies": {
"ethers": "5.7.1"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/lodash.clonedeep": "^4.5.7",
"@types/mocha": "^8.2.0",
"@types/node": "^15.6.0",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.2.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^10.0.0",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=10.0.0 <22"
}
}