forked from Attest/annotations-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.15 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
86
87
88
89
90
91
92
93
94
95
{
"name": "annotations-action",
"version": "0.0.0",
"private": true,
"description": "GitHub action for creating annotations from JSON file",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"-----------------UTILITY---------------": ".",
"commit": "git-cz",
"clean:nodemodules": "rimraf node_modules, yarn.lock",
"clean:dist": "rimraf dist",
"clean:jest": "rimraf **/node_modules/.cache && jest --clearCache &> /dev/null",
"nuke": "run-p -c clean:jest clean:nodemodules clean:dist && yarn",
"---------------CODEOWNERS--------------": ".",
"codeowners": "yarn generate-codeowners",
"--------------TYPECHECKING-------------": ".",
"typecheck": "tsc --noEmit --skipLibCheck",
"----------------BUILD TOOLS----------------": ".",
"build": "rollup -c",
"----------------LINTING----------------": ".",
"lint": "run-s lint:packagejson 'lint:eslint {@}' --",
"lint:eslint": "eslint --ext md,tsx,ts,js,ts,json --ignore-path .lintignore .",
"lint:packagejson": "npmPkgJsonLint ./packages",
"----------------Formatting----------------": ".",
"format": "prettier '**/*.{css,html,js,json,less,md,scss,ts,vue,yaml,yml}' --ignore-path .lintignore --check"
},
"repository": "https://github.com/Attest/annotations-action.git",
"keywords": [
"github",
"actions",
"annotations",
"tools",
"config",
"attest",
"askattest"
],
"author": "Attest Engineering <dev@askattest.com> (https://askattest.com)",
"license": "MIT",
"homepage": "https://askattest.com",
"config": {
"commitizen": {
"path": "./node_modules/@attest/standard-commits"
}
},
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "2.1.1",
"@octokit/core": "^2.4.3",
"@octokit/rest": "^16.43.1"
},
"devDependencies": {
"@attest/babel-preset-env-node": "^1.0.3",
"@attest/babel-preset-jest": "^1.0.3",
"@attest/babel-preset-typescript": "^2.0.1",
"@attest/config-jest": "^0.3.36",
"@attest/config-npm-package-json-lint": "^0.2.7",
"@attest/config-prettier": "^0.3.4",
"@attest/config-rollup-typescript": "^1.0.11",
"@attest/config-typescript": "^1.0.6",
"@attest/conventional-changelog": "^1.0.19",
"@attest/eslint-config": "^0.2.8",
"@attest/eslint-config-node": "^0.1.0",
"@attest/eslint-config-typescript": "^0.1.21",
"@attest/generate-codeowners": "^0.1.22",
"@attest/standard-commits": "^0.1.51",
"@babel/core": "^7.9.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.7",
"typescript": "^3.8.3"
},
"optionalDependencies": {
"eslint-plugin-react-hooks": "^2.5.1"
},
"engines": {
"node": ">=12.13 <13"
},
"resolutions": {
"minimist": "^1.2.5",
"**/os-locale": "^3.1.0"
},
"contributors": [
"Blake Newman <blake.newman@askattest.com> (https://askattest.com)"
]
}