-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.79 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": "mongodb-shell",
"version": "1.0.1",
"private": false,
"description": "a nodejs util to connect to a mongodb shell",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint --ext js,ts src"
},
"release-it": {
"github": {
"release": true
},
"scripts": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u",
"beforeBump": "npm run build",
"beforeStage": "npx auto-changelog -p"
},
"git": {
"tagName": "v${version}",
"commit": true
},
"npm": {
"publish": true
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbplay/mongo-shell.git"
},
"keywords": [
"nodejs",
"mongodb",
"shell",
"mplay"
],
"author": "https://www.mplay.run",
"license": "MIT",
"bugs": {
"url": "https://github.com/dbplay/mongo-shell/issues"
},
"homepage": "https://github.com/dbplay/mongo-shell#readme",
"devDependencies": {
"@types/jest": "24.0.23",
"@types/node": "11.15.2",
"@types/stream-to-promise": "2.2.0",
"@typescript-eslint/eslint-plugin": "2.8.0",
"auto-changelog": "1.12.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-jest": "23.0.4",
"eslint-plugin-prettier": "3.1.2",
"husky": "3.1.0",
"jest": "24.9.0",
"kind-of": "6.0.2",
"lint-staged": "9.4.3",
"p-wait-for": "3.1.0",
"prettier": "1.19.1",
"release-it": "10.4.2",
"ts-jest": "24.2.0",
"typescript": "3.7.4"
}
}