generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "fetch-doppler-secret",
"description": "This GitHub action allows receiving the secrets from the doppler.com",
"main": "src/index.js",
"scripts": {
"lint": "eslint --config package.json './src/**/*.js'",
"build:index": "ncc build src/index.js -o dist/action --minify --no-cache",
"build:cleanup": "ncc build src/cleanup.js -o dist/cleanup --minify --no-cache",
"build": "npm run build:index && npm run build:cleanup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gacts/fetch-doppler-secret.git"
},
"keywords": [
"github",
"actions",
"doppler"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gacts/fetch-doppler-secret/issues"
},
"homepage": "https://github.com/gacts/fetch-doppler-secret#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/http-client": "^2.2.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018
},
"rules": {}
}
}