-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.77 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
{
"name": "@exactly/tenderly-actions",
"version": "0.0.1",
"license": "AGPL-3.0",
"repository": "github:exactly/tenderly-actions",
"scripts": {
"test": "run-s --continue-on-error test:*",
"test:lint": "eslint .",
"test:bun": "bun test",
"prebuild": "ts-node scripts/prebuild.ts",
"upgrade": "run-s upgrade:* && bun install",
"upgrade:ncu": "ncu -u && ncu --cwd actions -u",
"upgrade:clean": "rimraf {.,actions}/node_modules {.,actions}/bun.lockb",
"postinstall:actions": "cd actions && bun install",
"postinstall:scripts": "ts-node scripts/postinstall.ts",
"postinstall": "run-s postinstall:* prebuild"
},
"files": [
"actions"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@exactly/protocol": "exactly/protocol#8ae3561e18d08930a28f85f136fba8372876c383",
"@tenderly/actions-test": "^0.2.56",
"@typechain/ethers-v5": "^11.1.2",
"@types/bun": "^1.1.3",
"@types/eslint": "^8.56.10",
"@types/mustache": "^4.2.5",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^1.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-node": "^11.1.0",
"glob-promise": "^6.0.5",
"mustache": "^4.2.0",
"npm-check-updates": "^16.14.20",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.5"
}
}