forked from MitchPierias/advanced-eos-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "advanced-eos-examples",
"version": "2.0.0",
"description": "Advanced EOS smart contract examples with tests and usage from EOSJS",
"main": "",
"scripts": {
"attach": "docker exec -it lamington bash",
"build": "lamington build",
"logs": "npm run logs:all | grep -vE \"^info |^warn |^error |^debug |.+keosd.+launched\"",
"logs:all": "docker logs lamington 2>&1 >/dev/null",
"start": "lamington start eos",
"stop": "lamington stop eos",
"test": "lamington test",
"init": "lamington init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MitchPierias/Advanced-EOS-Examples.git"
},
"contributors": [
{
"name": "Mitch Pierias",
"url": "https://github.com/MitchPierias"
},
{
"name": "Kevin Brown",
"url": "https://github.com/thekevinbrown"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MitchPierias/Advanced-EOS-Examples/issues"
},
"homepage": "https://github.com/MitchPierias/Advanced-EOS-Examples#readme",
"devDependencies": {
"@types/mocha": "5.2.6",
"@types/node": "^12.6.8",
"eosjs": "^20.0.0",
"lamington": "^1.0.0-alpha.4",
"typescript": "^3.5.3"
},
"dependencies": {}
}