-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "@integralhq/size-sdk",
"description": "An SDK for building applications on top of Integral SIZE.",
"license": "GPL-3.0-or-later",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "git+https://github.com/IntegralHQ/Integral-SIZE-SDK.git"
},
"keywords": [
"integral",
"ethereum"
],
"engines": {
"node": ">=10",
"yarn": "^1.17.3"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"publish-public": "npm publish --access public",
"docs": "typedoc",
"lint": "yarn lint:prettier --check && yarn lint:eslint",
"lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix",
"lint:eslint": "eslint './src/**/*.ts'",
"lint:prettier": "yarn prettier './src/**/*.ts'",
"test": "mocha"
},
"dependencies": {
"ethers": "^5.4.0"
},
"devDependencies": {
"@types/node": "^16.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"eslint": "^7.30.0",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"typedoc": "^0.22.15"
},
"bugs": {
"url": "https://github.com/IntegralHQ/Integral-SIZE-SDK/issues"
},
"homepage": "https://github.com/IntegralHQ/Integral-SIZE-SDK#readme",
"directories": {
"test": "test"
},
"author": ""
}