forked from flex-dapps/embark-mythx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.91 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "embark-mythx",
"description": "Status Embark plugin for MythX",
"version": "2.1.1",
"author": "[email protected]",
"contributors": [
{
"name": "Eric Mastro",
"email": "[email protected]",
"url": "https://github.com/emizzle"
},
{
"name": "Sebastian Mueller",
"email": "[email protected]",
"url": "https://github.com/semuelle"
}
],
"repository": {
"url": "https://github.com/embarklabs/embark-mythx",
"type": "git"
},
"homepage": "https://github.com/embarklabs/embark-mythx/blob/master/README.md",
"bugs": "https://github.com/embarklabs/embark-mythx/issues",
"license": "MIT",
"keywords": [
"embark",
"embark-plugin",
"mythx",
"smart-contract",
"security-analysis",
"solidity"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"formatters",
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true
},
"module": "dist/embark-mythx.esm.js",
"devDependencies": {
"@types/command-line-args": "5.0.0",
"@types/date-fns": "2.6.0",
"@types/jest": "^25.1.4",
"husky": "^4.2.3",
"tsdx": "^0.13.0",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"ascii-table": "0.0.9",
"chalk": "3.0.0",
"command-line-args": "5.1.1",
"command-line-usage": "6.1.0",
"date-fns": "2.11.1",
"dotenv": "8.2.0",
"embark-core": "5.3.0-nightly.13",
"embark-logger": "5.3.0-nightly.12",
"eslint": "6.8.0",
"mythxjs": "1.3.11",
"remix-lib": "0.4.23",
"tiny-async-pool": "1.1.0"
}
}