generated from john-d-pelingo/node-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "jira-link-issue-action",
"version": "1.1.2",
"description": "GitHub action for linking JIRA issues as a comment.",
"private": false,
"homepage": "https://github.com/john-d-pelingo/jira-link-issue-action",
"author": {
"email": "[email protected]",
"name": "John Darryl Pelingo",
"url": "https://johndpelingo.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/john-d-pelingo/jira-link-issue-action",
"directory": "packages/prettier-config"
},
"bugs": {
"url": "https://github.com/john-d-pelingo/jira-link-issue-action/issues"
},
"keywords": [
"node",
"typescript",
"github-action"
],
"prettier": "@jdp-dev/prettier-config",
"standard-version": {
"scripts": {
"prerelease": "yarn build"
}
},
"main": "./build/index.js",
"scripts": {
"--DEVELOPMENT--": "echo \"--DEVELOPMENT--\" && exit 1",
"format": "prettier --write 'src/**/*.{css,js,ts,tsx}' '**/*.md'",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"lint": "eslint ./src/ --ext .js,.ts,.tsx --max-warnings 0 --report-unused-disable-directives",
"sweep": "rimraf build",
"test": "jest",
"test:c": "jest --coverage",
"test:t": "tsc --noEmit",
"test:w": "jest --watch",
"--BUILD--": "echo \"--BUILD--\" && exit 1",
"prebuild": "run-s sweep lint test:t test:c",
"build": "ncc build src/index.ts --out build",
"build:pr": "ncc build src/index.ts --out build",
"--PRODUCTION--": "echo \"--PRODUCTION--\" && exit 1",
"release": "standard-version",
"start": "NODE_ENV=production node build/index.js"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@jdp-dev/commitlint-config": "^1.1.0",
"@jdp-dev/eslint-config-typescript": "^1.1.0",
"@jdp-dev/prettier-config": "^1.1.0",
"@jdp-dev/tsconfig": "^1.1.0",
"@octokit/types": "^6.34.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"pinst": "^2.1.6",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
}
}