-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "unleash-action",
"version": "1.0.0",
"description": "Unleash integration for GitHub workflows",
"main": "./dist/index.js",
"repository": "https://github.com/Unleash/unleash-action.git",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build": "tsc",
"release": "ncc build src/index.ts --license licenses.txt -o dist",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@types/node": "^20.5.7",
"node": "^20.5.1",
"node-fetch": "^3.3.2",
"unleash-proxy-client": "^2.5.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.14",
"@vercel/ncc": "^0.38.0",
"babel-jest": "^29.6.4",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"overrides": [
{
"files": "*.{json,yaml,yml,md}",
"options": {
"tabWidth": 2
}
}
]
}
}