-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.83 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
{
"name": "bailiff",
"version": "3.1.3",
"description": "A config manager",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"test": "jest --config jestconfig.json --coverage --verbose --detectOpenHandles",
"build": "npx tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"bin": {
"bailiff-init": "./lib/cli.js"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vijayrathore8492/bailiff.git"
},
"keywords": [
"config",
"config-manager",
"configuration",
"configs",
"conf",
"bailiff",
"configuration-manager",
"manage config"
],
"author": "vijayrathore8492",
"license": "GPL",
"bugs": {
"url": "https://github.com/vijayrathore8492/bailiff/issues"
},
"homepage": "https://github.com/vijayrathore8492/bailiff#readme",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"@types/mongodb": "^3.5.4",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.3.0",
"mongodb-memory-server": "^6.5.2",
"prettier": "^2.0.4",
"sinon": "^9.0.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"dependencies": {
"app-root-path": "^3.0.0",
"callsite": "^1.0.0",
"dotenv": "^8.2.0",
"lodash": "^4.17.21",
"mongodb": "^3.5.5",
"node-cache": "^5.1.0",
"json-schema": ">=0.4.0"
}
}