forked from mycodeself/mongo-migrate-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.94 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
{
"name": "mongo-migrate-ts",
"version": "0.0.0",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"bin": {
"mongo-migrate": "dist/bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mycodeself/mongo-migrate-ts.git"
},
"scripts": {
"dev": "ts-node bin/index.ts",
"build": "yarn clean && tsc",
"lint": "eslint -c .eslintrc 'lib/**/*.ts' --fix",
"test": "jest",
"clean": "rimraf dist",
"release": "semantic-release"
},
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/npm": "^5.2.0",
"@semantic-release/release-notes-generator": "^7.3.0",
"@types/cli-table": "^0.3.0",
"@types/commander": "^2.12.2",
"@types/jest": "^24.0.19",
"@types/mongodb": "^3.3.6",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.0.9",
"jest": "^25.2.4",
"lint-staged": "^9.4.2",
"prettier": "^2.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.25.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.24.3",
"semantic-release": "^15.13.27",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"dependencies": {
"cli-table": "^0.3.1",
"commander": "^4.0.1",
"mongodb": "^3.4.0",
"ora": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"yarn lint --quiet",
"prettier --write",
"git add"
]
}
}