-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.25 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
{
"name": "environment-variables",
"description": "Fetch and use deployment environment variables without hitting deployment.",
"version": "0.0.0",
"author": "Dariusz Porowski",
"license": "MIT",
"private": true,
"main": "dist/index.js",
"files": [
"dist/*"
],
"repository": "github:raven-actions/environment-variables",
"bugs": {
"url": "https://github.com/raven-actions/environment-variables/issues"
},
"homepage": "https://github.com/raven-actions/environment-variables#readme",
"keywords": [
"raven-actions",
"github-actions",
"actions",
"github",
"environment",
"variables"
],
"scripts": {
"cleanup": "npx rimraf -g dist lib coverage reports",
"cleanup:npm": "npm run cleanup && npx rimraf node_modules && npx rimraf package-lock.json",
"format": "prettier --write \"{src,tests}/**/*.ts\" *.md",
"format:ck": "prettier --check \"{src,tests}/**/*.ts\" *.md",
"format:pq": "pretty-quick",
"lint": "eslint --fix \"{src,tests}/**/*.ts\"",
"lint:ck": "eslint \"{src,tests}/**/*.ts\"",
"pack": "ncc build ./src/main.ts --minify --source-map",
"test": "jest",
"test:cov": "jest --coverage",
"test:ci": "jest --ci",
"test:ci:cov": "jest --ci --coverage --json --outputFile=coverage/report.json",
"build": "npm run cleanup && npm run format && npm run pack",
"build:ci": "npm run build",
"run:dev": "ncc run ./src/main.ts",
"run": "node dist/index.js",
"pkg:ck": "npx npm-check-updates",
"pkg": "npx npm-check-updates --upgrade && npm install"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/action": "^6.0.6",
"@octokit/request-error": "^5.0.1",
"octokit": "^3.1.2"
},
"devDependencies": {
"@octokit/openapi-types": "^19.0.2",
"@octokit/types": "^12.6.0",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.53.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "3.2.5",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.1",
"typescript": "^5.4.5"
}
}