forked from ERC725Alliance/erc725.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "erc725.js",
"version": "0.5.7",
"description": "Library to interact with ERC725 smart contracts",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "npm run lint && env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc --reporter=text --reporter=lcov mocha",
"lint": "eslint . --ext .ts",
"build-publish": "rm -rf build && npm run build && standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ERC725Alliance/erc725.js"
},
"keywords": [
"ethereum",
"erc725",
"lsp"
],
"authors": [
{
"name": "Robert McLeod",
"email": "[email protected]",
"url": "https://github.com/robertdavid010"
},
{
"name": "Fabian Vogelsteller",
"email": "[email protected]",
"homepage": "https://github.com/frozeman"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ERC725Alliance/erc725.js/issues"
},
"homepage": "https://github.com/ERC725Alliance/erc725.js#readme",
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"assert": "^2.0.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"isomorphic-fetch": "^3.0.0",
"mocha": "^9.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"standard-version": "^9.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"graphql-tag": "2.12.4",
"web3-eth-abi": "^1.3.6",
"web3-utils": "^1.3.6"
}
}