-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
99 lines (99 loc) · 2.56 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
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@erc725/erc725.js",
"version": "0.27.1",
"description": "Library to interact with ERC725 smart contracts",
"main": "build/main/src/index.js",
"typings": "build/main/src/index.d.ts",
"module": "build/module/src/index.js",
"files": [
"build",
"schemas",
"docs"
],
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc --reporter=text --reporter=lcov mocha",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"format:fix": "prettier --write .",
"format": "prettier .",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ERC725Alliance/erc725.js"
},
"keywords": [
"ethereum",
"erc725",
"lsp"
],
"contributors": [
{
"name": "Robert McLeod",
"url": "https://github.com/robertdavid010"
},
{
"name": "Fabian Vogelsteller",
"url": "https://github.com/frozeman"
},
{
"name": "Hugo Masclet",
"url": "https://github.com/Hugoo"
},
{
"name": "Callum Grindle",
"url": "https://github.com/CallumGrindle"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ERC725Alliance/erc725.js/issues"
},
"homepage": "https://github.com/ERC725Alliance/erc725.js#readme",
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@types/chai": "~4.3.11",
"@types/jest": "~27.5.2",
"@types/mocha": "~10.0.6",
"@types/node": "^20.11.16",
"@types/sinon": "~10.0.20",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"assert": "^2.1.0",
"chai": "~4.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"esm": "^3.2.25",
"jest": "^29.7.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"sinon": "^17.0.1",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"msw": "^2.3.1",
"web3": "^4.5.0",
"web3-eth-abi": "^4.2.0",
"web3-eth-accounts": "^4.1.1",
"web3-providers-http": "^4.1.0",
"web3-utils": "^4.1.1",
"web3-validator": "^2.0.4"
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}