-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "check-pr-format-action",
"version": "0.1.0",
"description": "A GitHub action that ensures that pull requests follow conventions.",
"author": "Rahul Ravikumar",
"license": "Apache-2.0",
"files": [
"src/**",
"app/**",
"built/**"
],
"main": "dist/index.js",
"types": "built/index.d.ts",
"scripts": {
"compile": "node_modules/.bin/tsc",
"format": "node_modules/.bin/clang-format -i -style=file --glob=src/**.ts",
"clean": "rm -rf built",
"watch": "node_modules/.bin/tsc --watch &",
"build": "node_modules/.bin/tsc && node_modules/.bin/parcel build src/index.ts --target default --no-optimize"
},
"targets": {
"default": {
"includeNodeModules": true
}
},
"engines": {
"node": "16"
},
"devDependencies": {
"@parcel/transformer-typescript-types": "^2.7.0",
"clang-format": "^1.8.0",
"parcel": "^2.7.0",
"typescript": "^4.7.4",
"watchify": "^4.0.0"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@types/node": "^18.7.1",
"yarn": "^1.22.19"
}
}