-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.99 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "simple-app-config",
"version": "1.2.0",
"description": "A simple configuration manager for different environments",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/youngbryanyu/simple-app-config.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"lint": "eslint .",
"test": "jest --verbose",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' 'tests/**/*.ts' --write"
},
"keywords": [
"app config",
"app-config",
"app configuration",
"app-configuration",
"appconfig",
"application config",
"application-config",
"application configuration",
"application-configuration",
"config",
"configuration",
"config-management",
"config management",
"configuration management",
"configuration-management",
"config-manager",
"config manager",
"configuration-manager",
"configuration manager",
".env",
"env",
"environment",
"environment-variables",
"javascript",
"nodejs",
"typescript",
"type conversion",
"JSON"
],
"author": "Young Yu",
"dependencies": {
"app-root-path": "^3.1.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"onchange": "^7.1.0",
"prettier": "^3.2.2",
"rollup": "^4.9.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-sinon": "^2.0.2",
"typescript": "^5.3.3"
}
}