-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "splitter",
"version": "1.0.0",
"description": "A payment splitter for ethereum",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:ggviana/splitter.git"
},
"scripts": {
"build": "truffle build",
"test": "truffle test",
"console": "truffle console",
"compile": "truffle compile",
"compile:watch": "nodemon --exec \"npm run compile\" contracts/**/*.sol test/**/*.js",
"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\""
},
"keywords": [
"ethereum",
"solidity",
"payment"
],
"author": "Guilherme Guimarães Viana <[email protected]>",
"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",
"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"
}
}