-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
99 lines (99 loc) · 2.92 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "mythxjs",
"version": "1.3.13",
"description": "Mythxjs is a library for the MythX smart contract security analysis platform.",
"//": [
" ## ## ## ## ######## ## ## ## ## ## ###### ",
" ### ### ## ## ## ## ## ## ## ## ## ## ",
" #### #### #### ## ## ## ## ## ## ## ",
" ## ### ## ## ## ######### ### ## ###### ",
" ## ## ## ## ## ## ## ## ## ## ## ",
" ## ## ## ## ## ## ## ## ## ## ## ## ",
" ## ## ## ## ## ## ## ## ###### ###### "
],
"keywords": [
"MythX",
"Smart Contract",
"Ethereum",
"Blockchain",
"Security"
],
"author": "Mirko Garozzo",
"homepage": "https://github.com/ConsenSys/mythxjs",
"repository": "https://github.com/ConsenSys/mythxjs.git",
"bugs": "https://github.com/ConsenSys/mythxjs/issues",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc mocha -r ts-node/register src/**/*.spec.ts",
"precommit": "lint-staged",
"docs": "typedoc --out docs src"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
]
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/es6-promise": "^3.3.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.2",
"@types/sinon": "^7.0.11",
"@types/sinon-chai": "^3.2.2",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-loader": "^5.4.3",
"ts-node": "^8.1.0",
"typedoc": "^0.14.2",
"typescript": "^3.4.4"
},
"dependencies": {
"axios": "^0.25.0",
"chai-as-promised": "^7.1.1",
"jsonwebtoken": "^8.5.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm test && lint-staged"
}
}
}