generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.88 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
62
63
64
65
66
67
68
69
70
{
"name": "typescript-action",
"version": "4.3.1",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc && yarn package",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --passWithNoTests",
"ci": "yarn build && yarn format && yarn lint && yarn test",
"contributors:add": "all-contributors add",
"prepare": "husky install",
"commit": "cz",
"release:first": "yarn release -- --first-release",
"release": "yarn build && standard-version --infile ./CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngworker/angular-versions-action"
},
"keywords": [
"actions",
"node",
"setup",
"angular",
"version"
],
"author": "Nacho Vazquez",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-angular": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/jest": "^27.0.3",
"@types/lodash-es": "^4.17.5",
"@types/node": "^12.20.13",
"@typescript-eslint/parser": "^5.4.0",
"@vercel/ncc": "~0.32.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^8.3.0",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"git-cz": "^4.8.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"js-yaml": "^4.1.0",
"lint-staged": "^12.1.2",
"prettier": "^2.3.0",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"volta": {
"node": "12.22.1"
}
}