-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "solidity-exporter-action",
"version": "2.1.0",
"description": "An action to generate npm packages based on Solidity contracts and interfaces",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"prepare": "husky install",
"test": "mocha 'test/**/*.spec.ts'",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/solidity-exporter-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Wonderland",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "6.0.0",
"@commitlint/cli": "17.8.0",
"@commitlint/config-conventional": "17.8.0",
"fs-extra": "11.1.1",
"husky": "8.0.3"
},
"devDependencies": {
"@types/chai": "4.3.5",
"@types/fs-extra": "11.0.1",
"@types/glob": "8.1.0",
"@types/mocha": "10.0.1",
"@types/mock-fs": "4.13.1",
"@types/node": "20.8.6",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.2.0",
"@vercel/ncc": "0.36.1",
"chai": "4.3.7",
"eslint": "8.45.0",
"eslint-plugin-github": "4.6.0",
"eslint-plugin-prettier": "5.0.0",
"mocha": "10.2.0",
"mock-fs": "5.2.0",
"prettier": "3.0.3",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}