-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "standardlint-action",
"description": "Runs StandardLint, an extensible standards linter and auditor.",
"version": "1.0.5",
"author": "Mikael Vesavuori",
"license": "MIT",
"keywords": [
"devops",
"software-delivery",
"ci-checks",
"linter",
"audit",
"test-automation",
"standards",
"compliance",
"auditor",
"engops"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mikaelvesavuori/standardlint-action"
},
"bugs": {
"url": "https://github.com/mikaelvesavuori/standardlint-action/issues"
},
"homepage": "https://github.com/mikaelvesavuori/standardlint-action",
"scripts": {
"start": "npx ts-node index.ts",
"build": "npm run build:clean && npm run build:ncc",
"build:clean": "rm -rf dist && mkdir -p dist",
"build:ncc": "npx ncc build index.ts --license licenses.txt"
},
"dependencies": {
"@actions/core": "1",
"@actions/github": "5",
"@octokit/action": "6",
"standardlint": "1.0.5"
},
"devDependencies": {
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "6",
"@typescript-eslint/parser": "6",
"@vercel/ncc": "0",
"eslint": "8",
"eslint-config-prettier": "8",
"eslint-plugin-prettier": "5",
"prettier": "3",
"ts-node": "latest",
"tslib": "latest",
"typescript": "5"
}
}