-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
69 lines (69 loc) · 2.22 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
{
"name": "browserslist-update-action",
"version": "2.5.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 . --report-unused-disable-directives",
"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.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@octokit/core": "5.2.0",
"@octokit/graphql": "7.1.0",
"@octokit/plugin-paginate-graphql": "4.0.1",
"package-manager-detector": "0.2.4",
"strip-ansi": "7.1.0"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/typescript": "4.1.1",
"@graphql-codegen/typescript-document-nodes": "4.0.11",
"@graphql-codegen/typescript-operations": "4.3.1",
"@graphql-codegen/typescript-resolvers": "4.4.0",
"@octokit/graphql-schema": "15.25.0",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/gettext-parser": "4.0.4",
"@types/node": "20.17.6",
"@vercel/ncc": "0.38.3",
"eslint": "9.15.0",
"graphql": "16.9.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"typescript": "5.6.3",
"typescript-eslint": "8.15.0"
},
"lint-staged": {
"*.(ts|js|json|css|scss|md|html)": [
"prettier --write --ignore-unknown --list-different"
],
"*.ts": [
"eslint --fix --report-unused-disable-directives"
]
}
}