-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.35 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.35 KB
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
{
"name": "gha-flags",
"version": "1.0.4",
"description": "Evaluate LaunchDarkly flags in your GitHub Action workflow.",
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "esbuild src/index.js --bundle --platform=node --target=node24 --format=esm --outfile=dist/index.js --banner:js='import{createRequire}from\"module\";const require=createRequire(import.meta.url);'",
"docs": "action-docs -u --no-banner && npm run prettier:write:path README.md",
"lint": "eslint src/ tests/",
"prettier": "prettier",
"prettier:check": "prettier -c ./",
"prettier:write": "prettier -w ./",
"prettier:write:path": "prettier -w",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/launchdarkly/gha-flags.git"
},
"keywords": [],
"author": "",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/launchdarkly/gha-flags/issues"
},
"homepage": "https://github.com/launchdarkly/gha-flags#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@launchdarkly/node-server-sdk": "^9.0.1"
},
"devDependencies": {
"action-docs": "^1.0.4",
"esbuild": "^0.27.4",
"eslint": "^8.17.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"vitest": "^4.1.0"
}
}