forked from LimeChain/eoslime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "eoslime",
"version": "2.0.0",
"description": "eoslime is an EOS development and deployment framework based on eosjs.js",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc --check-coverage mocha './tests/**/*.js' && tsc&& bash ./tests/testing-contracts/compile.sh && mocha -r ts-node/register tests/**/*.ts",
"test-dev": "mocha './tests/**/*.js'&& tsc && bash ./tests/testing-contracts/compile.sh && mocha -r ts-node/register tests/**/*.ts",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"author": "Lyubomir Kiprov (Limechain)",
"license": "MIT",
"dependencies": {
"chalk": "2.4.2",
"cli-table": "0.3.1",
"crypto-js": "3.1.9-1",
"eosjs": "16.0.9",
"is-invalid-path": "1.0.2",
"prompts": "2.2.1",
"simple-git": "1.132.0",
"yargs": "12.0.5"
},
"devDependencies": {
"@types/assert": "^1.5.1",
"@types/mocha": "^7.0.2",
"assert": "^2.0.0",
"mocha": "^5.2.0",
"nyc": "14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"keywords": [
"lime",
"eos",
"eoslime",
"framework",
"testing",
"deployment",
"contract"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LimeChain/eoslime.git"
},
"bugs": {
"url": "https://github.com/LimeChain/eoslime/issues"
},
"homepage": "https://github.com/LimeChain/eoslime#readme",
"bin": {
"eoslime": "./cli.js"
}
}