-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.41 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.41 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "solidity-realestate-tokenization",
"version": "1.0.0",
"description": "This boilerplate smart contract template introduces the core ideas and implementations for real estate tokenization",
"homepage": "https://github.com/Applicature/solidity-realestate-tokenization#readme",
"license": "Apache-2.0",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Applicature/solidity-realestate-tokenization.git"
},
"author": "Andrew Zubko <andrew@applicature.com>",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "npm run solhint",
"ganache": "sh rpc.sh",
"console": "truffle console --network development",
"test": "truffle test",
"develop": "truffle develop",
"compile": "truffle compile",
"coverage": "./node_modules/.bin/solidity-coverage",
"migrate": "truffle migrate --network development",
"solium": "solium -d contracts/",
"precommit": "npm run test && npm run solium",
"test:ci": "./node_modules/.bin/run-with-ganache 'npm run coverage && npm run test' && npm run solium",
"solhint": "node ./node_modules/solhint/solhint.js contracts/*.sol"
},
"directories": {
"test": "test"
},
"dependencies": {
"cucumber": "^5.0.1",
"openzeppelin-solidity": "^1.12.0",
"truffle": "^4.1.11",
"truffle-hdwallet-provider": "0.0.5"
},
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"bignumber.js": "^4.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.0",
"coveralls": "^2.13.1",
"dotenv": "^4.0.0",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eth-gas-reporter": "^0.1.1",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-testrpc": "^4.1.3",
"ethereumjs-util": "^5.1.2",
"ethjs-abi": "^0.2.1",
"ganache-cli": "6.1.0",
"husky": "^0.14.3",
"minimetoken": "^0.2.0",
"mocha": "^5.0.0",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.7",
"solhint": "^1.2.1"
}
}