-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "run-experiment",
"version": "1.0.0",
"description": "Steadybit Run Experiment Action",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt ",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/steadybit/run-experiment.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/steadybit/run-experiment/issues"
},
"homepage": "https://github.com/steadybit/run-experiment#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"axios": "^1.7.9"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-when": "^3.6.0",
"prettier": "^3.4.2"
},
"overrides": {
"undici": "5.28.5"
},
"jest": {
"testEnvironment": "jest-environment-node",
"transform": {}
}
}