-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.32 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
{
"name": "action-javascript",
"version": "1.0.0",
"description": "Github Action to execute arbitrary JavaScript code withing the workflow",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && ncc build src/index.ts -m -o dist",
"clean": "rimraf dist",
"prepare": "husky install",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"lint": "eslint --cache \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --cache --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amochkin/action-javascript.git"
},
"keywords": [
"javascript",
"github",
"action"
],
"author": "amochkin",
"bugs": {
"url": "https://github.com/amochkin/action-javascript/issues"
},
"homepage": "https://github.com/amochkin/action-javascript#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"ferramenta": "^1.0.24"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"prettier": "2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"ignorePatterns": [
"node_modules",
"dist"
],
"rules": {
"eqeqeq": "error",
"no-console": "warn",
"prettier/prettier": "error"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npm run lint:fix"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"useTabs": true,
"printWidth": 120,
"bracketSpacing": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"license": "MIT"
}