-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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": "confmon",
"version": "0.0.1-alpha.12",
"license": "MIT",
"description": "Config loading and monitoring solution",
"main": "lib/index.js",
"scripts": {
"build": "rimraf ./lib && tsc -p tsconfig.build.json && copyfiles -u 1 ./src/**/*.d.ts ./lib",
"audit": "pnpm audit",
"test": "jest --coverage --config ./jest.config.ts",
"lint": "eslint . --ext .ts"
},
"homepage": "https://github.com/victorkirov/confmon#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/victorkirov/confmon.git"
},
"author": "Victor Kirov",
"bugs": {
"url": "https://github.com/victorkirov/confmon/issues"
},
"keywords": [
"configuration",
"node",
"k8s",
"kubernetes"
],
"engines": {
"node": ">= 12.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"copyfiles": "^2.4.1",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"statesis": "^0.2.3"
}
}