-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.36 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
54
{
"name": "replace_envs",
"version": "2.0.0",
"description": "Replace Environment Variables with their values on any specified file.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.js tests/**.js --fix",
"test": "eslint src/**.js tests/**.js && jest --coverage",
"build": "ncc build src/index.js",
"precommit": "npm run build && git add dist/",
"all": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franzbischoff/replace_envs"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "Francisco Bischoff",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"tests/index.test.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}