-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
33 lines (33 loc) · 958 Bytes
/
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
{
"name": "branch-env-vars",
"version": "1.0.0",
"description": "An easy way to set environment variables based on the building branch",
"main": "src/index.ts",
"repository": "https://github.com/iamtheyammer/branch-env-vars",
"author": "iamtheyammer <iamtheyammer@gmail.com>",
"license": "MIT",
"scripts": {
"build": "ncc build src/index.ts -m",
"format": "prettier --write \"src/**/*.js\"",
"test": "jest",
"lint": "eslint src/"
},
"dependencies": {
"@actions/core": "^1.2.6"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vercel/ncc": "^0.34.0",
"babel-jest": "^27.0.1",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"prettier": "^2.3.0",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
}
}