-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.2 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "env-auth",
"version": "1.0.2",
"description": "Load environment variables (.env) from a private GitHub repository before starting your app. Useful for PaaS, CI/CD, or local development with centralized configs.",
"author": {
"name": "Lucas Lopes",
"email": "lucass.code@gmail.com",
"url": "https://setbytes.com"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"dotenv",
"github",
"env",
"cli",
"configuration",
"bootstrap",
"paas",
"ci",
"private-repo"
],
"scripts": {
"start": "node ./dist/app/server.js",
"build": "rm -rf dist && tsc -p tsconfig-build.json --declaration && cp package.json README.md ./dist",
"test:build": "rm -rf dist && npm run test:ci && tsc -p tsconfig-build.json --declaration && cp package.json README.md ./dist",
"test": "jest --passWithNoTests --silent=false --noStackTrace=false --runInBand",
"test:unit": "npm test -- --watch",
"test:ci": "npm test -- --coverage",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"deploy": "npm run build && npm publish",
"prepare": "ts-patch install -s"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/express": "^5.0.2",
"@types/jest": "^29.2.6",
"@types/morgan": "^1.9.9",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^31.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"git-commit-msg-linter": "^4.5.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-patch": "^2.1.0",
"typescript": "^4.9.4",
"typescript-transform-paths": "^3.4.6"
},
"repository": {
"type": "git",
"url": "https://github.com/setbytes/env-auth"
},
"bugs": {
"url": "https://github.com/setbytes/env-auth/issues"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
}
}