-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.46 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.46 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
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
{
"name": "@1inch/tx-decoder",
"version": "1.1.13",
"description": "",
"source": "src/index.ts",
"main": "dist/index.js",
"scripts": {
"prebuild": "yarn run build-script && rm -rf dist && yarn run test:coverage && yarn run make-badges",
"build": "tsc --module commonjs",
"postbuild": "cp package.json dist && cp README.md dist",
"build-script": "webpack --mode=production && rm -rf dist",
"lint": "eslint ./src --ext .js,.ts",
"release": "standard-version",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"typecheck": "tsc --noEmit --skipLibCheck",
"prettier": "prettier --write .",
"make-badges": "istanbul-badges-readme",
"ci-pipeline": "yarn run lint && yarn run test && yarn run typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1inch/tx-decoder.git",
"directory": "@1inch/tx-decoder"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/1inch/tx-decoder/issues"
},
"homepage": "https://github.com/1inch/tx-decoder#readme",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "4",
"babel-jest": "^26.6.3",
"eslint": "7",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-unused-imports": "^1.1.1",
"husky": "^6.0.0",
"istanbul-badges-readme": "^1.2.1",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"node-fetch": "^2.6.6",
"prettier": "^2.2.1",
"standard-version": "^9.2.0",
"ts-loader": "^9.2.6",
"ts-mockito": "^2.6.1",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.4.4",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn run typecheck"
}
},
"lint-staged": {
"*.{js,ts,md,json}": [
"yarn run prettier"
],
"*.{js,ts}": [
"yarn run lint"
]
},
"dependencies": {
"ethers": "^5.5.1"
}
}