forked from BaronaGroup/migsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.72 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
{
"name": "migsi",
"version": "1.7.3",
"description": "A node.js migration tool suitable for all kinds of migrations",
"homepage": "https://github.com/BaronaGroup/migsi",
"repository": {
"type": "git",
"url": "BaronaGroup/migsi"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/cli-color": "0.3.29",
"@types/inquirer": "0.0.44",
"@types/lodash": "4.14.136",
"@types/mocha": "5.2.7",
"@types/mongodb": "2.2.24",
"@types/node": "9.6.50",
"background-eslint-hook": "1.0.0",
"chai": "4.2.0",
"eslint": "5.16.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-symlink": "2.1.4",
"gulp-typescript": "4.0.2",
"mocha": "6.2.0",
"npm-release": "1.0.0",
"post-commit": "0.0.1",
"source-map-support": "0.5.12",
"typescript": "3.5.3",
"typescript-eslint-parser": "21.0.2"
},
"license": "MIT",
"author": {
"name": "Tapani Haka"
},
"scripts": {
"eslint": "eslint . --max-warnings=0 --ext ts",
"background-eslint-hook": "background-eslint-hook",
"test": "npm run build && mocha build/test/test/*.js",
"build-es2017": "gulp es2017",
"build-es2016": "gulp es2016",
"build-ts": "npm run build",
"build": "gulp",
"build-test": "gulp build-tests",
"prepare": "npm run build-ts",
"release": "npm test && npm-release",
"lint": "npm run eslint"
},
"post-commit": [
"background-eslint-hook"
],
"main": "lib/migsi.js",
"bin": "./bin/migsi",
"dependencies": {
"cli-color": "^1.2.0",
"dependency-solver": "^1.0.6",
"inquirer": "^5.2.0",
"lodash": "^4.17.10",
"moment": "^2.22.0",
"mongodb": "^2.2.35",
"node-getopt-long": "^0.3.2"
},
"types": "build/es2017/core.d.ts"
}