-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.85 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "noir-gates-diff",
"version": "0.0.1",
"description": "Github Action reporting gates diff from Nargo info reports",
"author": "TomAFrench",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "tsc --build tsconfig.build.json",
"package": "ncc build --source-map --license licenses.txt",
"release": "yarn build && yarn package",
"test": "jest",
"lint": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ./.eslintignore --max-warnings 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomAFrench/noir-gates-diff.git"
},
"bugs": {
"url": "https://github.com/TomAFrench/noir-gates-diff/issues"
},
"homepage": "https://github.com/TomAFrench/noir-gates-diff#readme",
"keywords": [
"Noir",
"Nargo",
"gates",
"report",
"Aztec"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/core": "^4.2.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@actions/artifact": "^1.1.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@jest/types": "^29.5.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/adm-zip": "^0.5.0",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.1.5",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vercel/ncc": "^0.36.1",
"adm-zip": "^0.5.10",
"colors": "^1.4.0",
"eslint": "^8.40.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"jest": {
"clearMocks": true,
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"verbose": true
}
}