generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "object-remap",
"version": "3.0.0",
"author": "Nick Partridge <nick.ryan.partridge@gmail.com>",
"description": "Basic action utility to remap objects in github action workflow",
"main": "lib/main.js",
"scripts": {
"build": "rimraf ./lib && tsc -p tsconfig.build.json",
"lint": "NODE_ENV=production eslint --quiet --ext .tsx,.ts,.js .",
"package": "export NODE_OPTIONS=--openssl-legacy-provider; ncc build lib/main.js --source-map --license licenses.txt && sh clean_dist.sh",
"test": "jest",
"all": "npm run build && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickofthyme/object-remap.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"change-case": "^4.1.2",
"get-value": "^3.0.1",
"joi": "^17.13.3",
"set-value": "^4.1.0"
},
"devDependencies": {
"@types/get-value": "^3.0.5",
"@types/jest": "^27.0.1",
"@types/node": "^20",
"@types/set-value": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.28.3",
"@vercel/ncc": "^0.29.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^13.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unicorn": "^35.0.0",
"jest": "^27.0.6",
"rimraf": "^6.0.1",
"ts-jest": "^27.0.3",
"typescript": "^4.1.3"
}
}