This repository was archived by the owner on Dec 14, 2022. It is now read-only.
forked from hCaptcha/eth-kvstore
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 KB
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
{
"name": "eth-kvstore",
"version": "0.0.1",
"description": "Key-value store on Ethereum",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"migrate": "truffle migrate",
"deploy": "npm run compile && npm run migrate",
"fix:js": "eslint --fix test/** migrations/**",
"lint:js": "eslint test/*.js migrations/** security/**",
"lint:sol": "solhint contracts/*.sol contracts/*/*.sol test/*.sol test/*/*.sol",
"lint": "npm run lint:js && npm run lint:sol",
"mythril": "node security/mythril.js",
"publish": "truffle publish",
"pretest": "npm run lint",
"test": "truffle migrate; truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanprotocol/eth-kvstore.git"
},
"keywords": [
"ethereum"
],
"authors": [
"HUMAN Protocol"
],
"license": "MIT",
"homepage": "https://github.com/humanprotocol/eth-kvstore",
"dependencies": {
"@truffle/hdwallet-provider": "^2.1.0",
"armlet": "^0.1.8",
"dotenv": "^6.0.0",
"truffle": "^5.1.32"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"openpgp": "^5.5.0",
"solhint": "^1.2.1",
"truffle-assertions": "^0.9.2"
}
}