-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "erc20-analyser",
"version": "0.1.5",
"description": "Module to analyse ERC-20 Token balance of address",
"main": "./dist/index.js",
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 KB"
}
],
"scripts": {
"rm-rf": "rm -rf ./src/**/*.js",
"test": "jest --config jestconfig.json",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"clean": "rimraf dist coverage ./src/**/*.js",
"build": "tsc",
"size": "size-limit",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json -t codeFrame 'src/**/*.ts'",
"prepublish": "npm run clean && npm run build",
"local": "tsc ./src/index.ts && node ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shevchenkonik/erc20-analyser.git"
},
"author": "Nik Shevchenko",
"keywords": [
"ERC20",
"token",
"ethereum",
"investments"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shevchenkonik/erc20-analyser/issues"
},
"homepage": "https://github.com/shevchenkonik/erc20-analyser#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-typescript": "^7.3.3",
"@types/crypto-js": "^3.1.43",
"@types/jest": "^24.0.11",
"babel-jest": "^24.5.0",
"jest": "^24.5.0",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"size-limit": "^1.3.2",
"ts-jest": "^24.0.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000"
},
"dependencies": {
"axios": "^0.19.0",
"crypto-js": "^3.1.9-1"
}
}