-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "semantic-pr-title",
"version": "1.0.0",
"description": "A GitHub Action to validate pr titles against Conventional Commits",
"files": [
"action.yml",
"dist/index.js"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt",
"test": "mocha src/**/*.test.ts",
"coverage": "nyc npm run test",
"fmt": "prettier --write \"src/**/*.{js,ts,tsx,json,md,css,html}\"",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dequelabs/semantic-pr-title.git"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/dequelabs/semantic-pr-title/issues"
},
"homepage": "https://github.com/dequelabs/semantic-pr-title#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@types/conventional-commits-parser": "^3.0.2",
"conventional-commit-types": "^3.0.0",
"conventional-commits-parser": "^3.2.4"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vercel/ncc": "^0.34.0",
"chai": "^4.3.7",
"eslint": "^8.27.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "4.8"
},
"lint-staged": {
"*.{md,json,js,ts,html}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}