-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 948 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
{
"name": "action-config-levels",
"version": "0.1.0",
"description": "Load configuration and merge it by redefinition levels",
"main": "dist/index.js",
"scripts": {
"dist": "$(npm bin)/ncc build index.js -m --license licenses.txt",
"lint": "$(npm bin)/eslint .",
"test": "$(npm bin)/jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blablacar/action-config-levels.git"
},
"keywords": [
"GitHub",
"Actions"
],
"author": "Pavlo Bashynskyi (levonet)",
"license": "MIT",
"bugs": {
"url": "https://github.com/blablacar/action-config-levels/issues"
},
"homepage": "https://github.com/blablacar/action-config-levels#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"deepmerge": "^4.2.2",
"glob": "^7.1.7",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.28.6",
"eslint": "^7.28.0",
"jest": "^27.0.4"
}
}