forked from pascalgn/npm-publish-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 786 Bytes
/
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
{
"name": "npm-publish-monorepo-action",
"version": "0.0.1",
"description": "GitHub action to automatically publish packages to npm",
"author": "Wojciech Trocki",
"license": "MIT",
"private": true,
"bin": {
"npm-publish-monorepo-action": "./index.js"
},
"scripts": {
"lint": "eslint ."
},
"devDependencies": {
"eslint": "^7.26.0",
"prettier": "^2.3.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"extends": [
"eslint:recommended"
],
"env": {
"node": true,
"es6": true
},
"rules": {
"no-console": "off"
}
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
},
"dependencies": {
"glob": "^7.1.7"
}
}