-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 2.03 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
{
"name": "browserslist-update-action",
"version": "2.4.0",
"private": "true",
"description": "A Github Action to run `npx browserslist@latest --update-db` on a repository and propose a pull request to merge updates",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "prettier --check \"**/*.{ts,js,json,css,scss,less,md,html}\" && eslint src/**",
"graphql": "graphql-codegen --config codegen.yml",
"pack": "ncc build && cp src/*.sh dist/",
"all": "npm run graphql && npm run lint && npm run build && npm run pack",
"prepare": "husky",
"preversion": "npm run all && git add -A src/generated dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c2corg/browserslist-update-action.git"
},
"keywords": [
"actions",
"node"
],
"author": "Camptocamp Association",
"license": "MIT",
"bugs": {
"url": "https://github.com/c2corg/browserslist-update-action/issues"
},
"homepage": "https://github.com/c2corg/browserslist-update-action#readme",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@octokit/graphql": "8.1.1",
"@octokit/plugin-paginate-graphql": "5.2.2",
"strip-ansi": "7.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/typescript": "4.0.7",
"@graphql-codegen/typescript-document-nodes": "4.0.7",
"@graphql-codegen/typescript-operations": "4.2.1",
"@graphql-codegen/typescript-resolvers": "4.1.0",
"@octokit/graphql-schema": "15.18.0",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/gettext-parser": "4.0.4",
"@types/node": "20.14.1",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"graphql": "16.8.1",
"husky": "9.0.11",
"lint-staged": "15.2.5",
"prettier": "3.3.0",
"typescript": "5.4.5"
}
}