-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 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": "asana-github-sync",
"version": "1.0.0",
"description": "GitHub Action that syncs PR states to Asana task custom fields",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"package": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.js --sourcemap",
"test": "bun test --coverage",
"test:watch": "bun test --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"all": "bun run format && bun run lint && bun run test && bun run package",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"github-action",
"asana",
"automation",
"pull-request"
],
"author": "Planning Center",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.56.1",
"esbuild": "^0.28.0",
"eslint": "^10.2.1",
"msw": "^2.13.4",
"prettier": "^3.8.3",
"vitepress": "^1.6.4",
"vue": "^3.5.32"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0",
"@lifeomic/attempt": "^3.1.0",
"@types/handlebars": "^4.1.0",
"@types/js-yaml": "^4.0.9",
"handlebars": "^4.7.9",
"js-yaml": "^4.1.1",
"marked": "^17.0.6"
}
}