-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "hybridconfig",
"version": "0.2.1",
"description": "Runtime web application configuration loader utilizing hybrid approach: using external JSON config fetching but allowing use of environment variables to overwrite values in development environment.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest",
"tsc:check": "tsc --noEmit",
"prettier:check": "prettier --list-different **/*",
"prettier:fix": "prettier --write **/*",
"tslint:check": "tslint --project .",
"tslint:fix": "tslint --project . --fix",
"prepare": "npm run build",
"lint": "npm run tsc:check && npm run prettier:check && npm run tslint:check"
},
"files": [
"dist/",
"!*.test.js",
"!*.test.d.ts"
],
"dependencies": {
"constant-case": "^3.0.4"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^12",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5"
}
}