-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"name": "pstoken",
"version": "0.1.0",
"description": "Phoenix Security Token System",
"scripts": {
"build": "npm run buidl",
"buidl": "rm -rf build/ && npx truffle compile",
"chain": "npx ganache-cli --port 8545 --seed PhoenixST -l 32000000",
"test": "npx truffle test --network development",
"cover": "rm -f coverage.json && rm -rf coverage && npx solidity-coverage",
"chain-cover": "npx testrpc-sc --port 8555 -l 0xfffffffffff -g 0x01 --allowUnlimitedContractSize --seed PhoenixST",
"test-cover": "npx truffle test --network coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"solidity-coverage": "^0.5.11"
},
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"ethereumjs-util": "^6.0.0",
"ganache-cli": "^6.5.1",
"solc": "^0.5.10",
"truffle": "^5.0.30",
"truffle-assertions": "^0.8.2"
}
}