-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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
{
"name": "move-tasks",
"private": true,
"version": "0.0.3-alpha",
"description": "Github action to move tasks on Github projects",
"main": "action/index.js",
"scripts": {
"build": "builder build --node-env production",
"start": "builder build",
"lint": "eslint action/**/*.ts src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hungluu/move-tasks.git"
},
"keywords": [
"github",
"actions",
"move",
"tasks",
"projects"
],
"author": "Hung Luu",
"license": "MIT",
"bugs": {
"url": "https://github.com/hungluu/move-tasks/issues"
},
"homepage": "https://github.com/hungluu/move-tasks#readme",
"packageManager": "yarn@3.6.0",
"devDependencies": {
"@abux/builder": "^0.2.5",
"@types/kind-of": "^6.0.0",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"ts-loader": "^9.4.3",
"typescript": "~5.0.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"kind-of": "^6.0.3",
"lodash-es": "^4.17.21"
}
}