-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.43 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
57
58
59
60
61
62
63
64
65
{
"name": "vscc",
"version": "0.1.1",
"description": "Verify the consistency between the source code of a smart contract and its online 'runtimeCode'.",
"author": "lele.tian@bitocean.org",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "mocha --timeout 600000 --require ts-node/register --recursive ./test/test-*.ts",
"covered": "nyc --reporter=text --reporter=html npm run test"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"test/",
"**/*.d.ts",
"src/types.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text-summary"
],
"all": true,
"check-coverage": true
},
"dependencies": {
"axios": "^0.18.0",
"solc": "^0.5.8"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.6",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"ts-node": "^8.1.0",
"typescript": "^3.3.3"
},
"license": "GNU v3",
"repository": {
"type": "git",
"url": "https://github.com/OceanEx/thor-contract-verify"
},
"keywords": [
"thor",
"vechain",
"blockchain",
"smart",
"contract"
],
"bugs": {
"url": "https://github.com/OceanEx/thor-contract-verify/issues"
},
"homepage": "https://github.com/OceanEx/thor-contract-verify"
}