This repository was archived by the owner on Jan 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.62 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
{
"name": "deal-token",
"version": "0.1.0",
"description": "Regulatable Ethereum deal token smart contracts",
"repository": {
"type": "git",
"url": "git+https://github.com/Finhaven/DealToken.git"
},
"license": "Apache-2.0",
"scripts": {
"postinstall": "echo \"\n\n\n\ncontracts included in this project require compilation on a fresh checkout: npm run truffle:compile\n\n\n\n\"",
"pretest": "./ensure-ganache-running.sh || (npm run start:testrpc &)",
"test": "truffle test",
"test:lint": "eslint -c .eslintrc . --color=true --quiet",
"test:lint:fix": "eslint -c .eslintrc . --color=true --quiet --fix",
"truffle:compile": "truffle compile",
"start:testrpc": "ganache-cli -u 0 -s frontier-seed",
"watch": "npm-watch"
},
"watch": {
"test": "contracts/*,test/*",
"test:truffle": {
"patterns": [
"truffle"
],
"extensions": "js,json,sol"
}
},
"bugs": {
"url": "https://github.com/Finhaven/DealToken/issues"
},
"homepage": "https://github.com/Finhaven/DealToken#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"ganache-cli": "^6.1.0",
"mocha": "^5.0.5",
"npm-watch": "^0.3.0",
"solhint": "^1.1.10",
"solidity-coverage": "^0.4.14",
"truffle": "^4.1.3",
"zeppelin-solidity": "1.3.0"
},
"engines": {
"node": "8.4"
},
"dependencies": {
"ethereumjs-tx": "^1.3.4",
"solc": "^0.4.21",
"web3": "^1.0.0-beta.33",
"web3-server-tools": "git+https://github.com/Finhaven/web3-server-tools.git"
}
}