This repository was archived by the owner on Mar 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
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
{
"name": "@moneyforward/code-review-action",
"version": "0.2.0",
"description": "Analyze code statically in Github actions",
"main": "dist/main/index.js",
"scripts": {
"test": "gulp test",
"version": "gulp clean build && git add dist/action",
"postversion": "gulp postversion",
"start": "gulp build && node dist/action/index.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moneyforward/code-review-action.git"
},
"keywords": [
"github",
"actions",
"code review",
"static code analysis"
],
"author": "Money Forward, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/moneyforward/code-review-action/issues"
},
"homepage": "https://github.com/moneyforward/code-review-action#readme",
"dependencies": {},
"devDependencies": {
"@moneyforward/command": "^0.1.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.6",
"@types/sinon": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@zeit/ncc": "^0.22.1",
"chai": "^4.2.0",
"del": "^5.1.0",
"eslint": "^7.0.0",
"gulp": "^4.0.2",
"mocha": "^7.1.2",
"sinon": "^9.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
}
}