-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.85 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "yammy",
"version": "2.1.0",
"description": "Yet another mongo migration tool",
"keywords": [
"mongo",
"mongodb",
"migrate",
"migration"
],
"homepage": "https://gitlab.com/m03geek/yammy#README",
"bugs": {
"url": "https://gitlab.com/m03geek/yammy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkeLLLa/yammy.git"
},
"license": "MIT",
"author": "m03geek",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"yammy": "bin/run"
},
"files": [
"bin/*",
"example/*",
"dist/**/*.js",
"dist/**/*.ts",
"dist/**/*.map"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "npm run build:node",
"build:node": "tsc -p tsconfig.json",
"get-changelog": "conventional-changelog -r 2 -p angular",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint . --ext js,jsx,ts,tsx",
"prerelease": "npm run typedoc && git add -A ./docs",
"release": "git add -A && standard-version -a",
"test": "npm audit --production && npm run lint && npm run unit",
"typedoc": "rm -rf ./docs/* && typedoc && pretty-quick",
"unit": "jest --runInBand",
"postunit": "codecov || true",
"version:update": "echo v$npm_package_version > VERSION"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-help": "^3.2.2",
"@types/mongodb": "^3.6.18",
"cli-ux": "^5.5.1",
"mongodb": "^3.6.9"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@jest/globals": "^27.0.3",
"@oclif/dev-cli": "^1.26.0",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@typescript-eslint/typescript-estree": "^4.27.0",
"codecov": "^3.8.2",
"eslint": "^7.28.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sort-requires": "^2.1.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"mongodb-memory-server": "^6.6.0",
"prettier": "^2.3.1",
"prettier-plugin-packagejson": "^2.2.11",
"pretty-quick": "^3.1.0",
"standard-version": "^9.3.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.9.0",
"typescript": "^4.3.2"
},
"oclif": {
"commands": "./dist/commands",
"bin": "yammy",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
]
},
"standard-version": {
"scripts": {
"prerelease": "npm test",
"postbump": "echo Version: v$npm_package_version",
"posttag": "git push --follow-tags"
}
}
}