-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "solidity-store",
"version": "1.0.0",
"description": "A data structure to store uint values by key",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:ggviana/solidity-store.git"
},
"scripts": {
"build": "truffle build",
"test": "truffle test",
"console": "truffle console",
"compile": "truffle compile",
"watch": "truffle watch",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"ganache": "ganache-cli --seed \"tell thank gain cat just leader include gossip wasp pyramid nasty dune\" --accounts 4 --port 7545"
},
"keywords": [
"ethereum",
"solidity"
],
"author": "Guilherme Guimarães Viana <ggviana@hotmail.com.br>",
"license": "ISC",
"devDependencies": {
"chai": "4.2.0",
"chai-bn": "0.2.0",
"eslint": "6.4.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"ganache-cli": "6.7.0",
"nodemon": "1.19.2",
"openzeppelin-test-helpers": "0.4.3",
"solhint": "2.2.0",
"truffle": "5.0.36",
"truffle-hdwallet-provider": "1.0.17"
},
"dependencies": {
"bn.js": "5.0.0"
}
}