forked from tasitlabs/tasit-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 902 Bytes
/
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
{
"name": "tasit-contracts",
"version": "0.0.1",
"description": "",
"keywords": [
"ethereum",
"dapp",
"truffle",
"ganache",
"solidity"
],
"author": "Tasit Labs",
"homepage": "https://github.com/tasitlabs/TasitSDK/tree/develop/packages/tasit-contracts#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tasitlabs/tasitsdk.git"
},
"scripts": {
"ganache:start": "npx ganache-cli -m 'beach swap combine paper music cook electric bullet trust actress liquid asthma' > /dev/null 2>&1 &",
"ganache:stop": "pkill -f ganache-cli",
"compile": "npx truffle compile",
"migrate": "npx truffle migrate --reset",
"test": "npx truffle test"
},
"bugs": {
"url": "https://github.com/tasitlabs/tasitsdk/issues"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"truffle": "^5.0.0-beta.2"
}
}