generated from Bullrich/parity-action-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.65 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
{
"name": "metrics",
"version": "0.0.1",
"description": "Get the metrics for a GitHub repository",
"main": "src/index.ts",
"scripts": {
"start": "node dist",
"build": "npm-run-all postinstall && ncc build --license LICENSE",
"cli": "npm-run-all postinstall && ncc build src/cli.ts -o .cli && node .cli",
"test": "jest",
"fix": "npx eslint --fix 'src/**/*.ts' && npx prettier --write 'src/**/*.{ts,yml}'",
"lint": "npx eslint 'src/**/*.ts' && npx prettier --check 'src/**/*.{ts,yml}'",
"copy": "node scripts/copy-files.js",
"codegen": "graphql-codegen --config codegen.ts",
"postinstall": "npm-run-all copy codegen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bullrich/parity-action-template.git"
},
"author": "Javier Bullrich <javier@bullrich.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bullrich/parity-action-template/issues"
},
"homepage": "https://github.com/Bullrich/parity-action-template#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"envsafe": "^2.0.3",
"moment": "^2.30.1",
"showdown": "^2.1.0",
"simple-statistics": "^7.8.3"
},
"devDependencies": {
"@eng-automation/js-style": "^3.1.0",
"@graphql-codegen/cli": "^5.0.2",
"@octokit/graphql-schema": "^14.55.1",
"@octokit/webhooks-types": "^7.5.1",
"@types/jest": "^29.5.12",
"@types/showdown": "^2.0.6",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.2.2",
"typescript": "^5.5.3"
},
"packageManager": "yarn@4.3.1"
}