-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "check-commit",
"version": "1.0.0",
"description": "Action to check if the commit follows proper syntax",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build -m",
"test": "jest --no-cache",
"format:cli": "prettier --config='.prettierrc' --write",
"format:src:ts": "npm run format:cli 'src/**/*.ts'",
"format:tests:ts": "npm run format:cli 'tests/**/*.ts'",
"format": "npm run format:src:ts && npm run format:tests:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adityaa30/check-commit.git"
},
"author": "adityaa30",
"license": "ISC",
"bugs": {
"url": "https://github.com/adityaa30/check-commit/issues"
},
"homepage": "https://github.com/adityaa30/check-commit#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@zeit/ncc": "^0.22.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"tslint": "^6.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"prettier": "^2.2.1"
}
}