-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
78 lines (78 loc) · 1.97 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
{
"name": "bsc-scan",
"version": "1.2.0",
"description": "Node.js package to interact with official BscScan API",
"repository": "https://github.com/jpgarcia/bsc-scan",
"author": "Juan Pablo Garcia",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/jpgarcia/bsc-scan#readme",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean:dist": "rm -rf dist",
"lint": "eslint --ext .js,.ts src",
"prebuild": "yarn clean:dist",
"prepare": "yarn build",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.10",
"@types/axios": "0.14.0",
"@types/lodash.identity": "3.0.6",
"@types/lodash.pickby": "4.6.6",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"semantic-release": "17.3.7",
"typescript": "4.1.3"
},
"release": {
"branches": [
"main"
],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"lint-staged": {
"**/*.{js,ts}": "yarn eslint"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "yarn lint-staged",
"pre-push": "yarn tsc && yarn lint --quiet"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "0.21.1",
"lodash.identity": "3.0.0",
"lodash.pickby": "4.6.0",
"querystring": "0.2.0"
}
}