-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "update-project-action",
"version": "0.0.1",
"description": "Updates an item's fields on a GitHub Projects (beta) board based on a workflow dispatch (or other) event's input.",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts --fix",
"package": "ncc build src/main.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/update-project-action.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/github/update-project-action/issues"
},
"homepage": "https://github.com/github/update-project-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.3",
"@octokit/core": "^4.1.0",
"@octokit/graphql": "^5.0.5",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vercel/ncc": "^0.38.0",
"babel-jest": "^28.1.3",
"eslint": "^8.32.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-jest": "^27.2.1",
"fetch-mock": "^9.11.0",
"jest": "^28.1.3",
"js-yaml": "^4.1.0",
"prettier": "2.8.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": ">=3.3.1, <4.10.0"
}
}