-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.22 KB
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
{
"name": "@jpmonette/bscscan",
"version": "0.2.4",
"description": "Explore the Binance Smart Chain using TypeScript and JavaScript",
"homepage": "https://github.com/jpmonette/bscscan-ts",
"author": "Jean-Philippe Monette <contact@jpmonette.net>",
"license": "MIT",
"main": "lib/client.js",
"types": "lib/client.d.ts",
"bugs": {
"url": "https://github.com/jpmonette/bscscan-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jpmonette/bscscan-ts.git"
},
"scripts": {
"build": "rimraf lib/ && mkdir lib && tsc",
"prepublish": "yarn build",
"test": "export NODE_ENV=test && npx jest --passWithNoTests",
"test-travis": "export NODE_ENV=test && npx jest --silent --passWithNoTests --coverage"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.1.0",
"dotenv": "^10.0.0",
"eslint": "^7.26.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.6.3",
"msw": "^0.35.0",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typedoc": "^0.22.10",
"typescript": "^4.2.4"
}
}