generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "nitpicker",
"version": "0.0.0",
"private": true,
"description": "Action to auto-comment",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx --ignore-pattern node_modules/",
"pack": "ncc build",
"all": "npm run lint && npm run build && npm test && npm run pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethanis/nitpicker.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "ethanis",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^1.1.0",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/js-yaml": "^3.12.1",
"@types/minimatch": "^3.0.3",
"@types/node": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^6.7.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"prettier": "^1.19.1",
"ts-jest": "^24.0.2",
"typescript": "^3.7.2"
}
}