-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 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
{
"name": "bnbooking-sc",
"version": "2.0.0",
"description": "Simple smart contract to handle the payment on bnbooking",
"main": "index.js",
"scripts": {
"test": "./scripts/test.sh",
"test-debug": "./scripts/test.sh --debug",
"build": "truffle compile",
"lint-sc": "solium -d contracts/",
"lint-js": "eslint 'test/**/*.js' 'migrations/**/*.js'",
"lint": "npm run lint-js && npm run lint-sc",
"coverage": "truffle run coverage",
"deploy-local": "truffle migrate --network development",
"deploy-ropsten": "truffle migrate --network ropsten",
"ganache": "ganache-cli --deterministic",
"release": "standard-version"
},
"author": "",
"license": "MIT",
"dependencies": {
"@truffle/hdwallet-provider": "1.1.0",
"openzeppelin-solidity": "3.2.0",
"truffle": "5.1.46"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"bn-chai": "1.0.1",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "7.10.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-mocha": "6.0.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "4.2.1",
"ganache-cli": "6.10.2",
"openzeppelin-test-helpers": "0.5.1",
"prettier": "2.1.2",
"solidity-coverage": "0.7.10",
"solium": "1.2.5",
"standard-version": "9.0.0"
}
}