This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.79 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.79 KB
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
{
"name": "migrate-to-graph",
"version": "0.2.0",
"description": "A tool to migrate existing database to a graph database",
"license": "MIT",
"repository": "https://github.com/Microsoft/MigrateToGraph",
"author": {
"name": "Microsoft Corporation"
},
"keywords": [
"graph",
"gremlin",
"database",
"migrate",
"graph-database",
"migration-tool",
"cosmosdb"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"gen-schema": "typescript-json-schema tsconfig.json GraphInfo --required -o src/schema/graph-schema.json",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch",
"start": "ts-node ./src/index.ts"
},
"dependencies": {
"ajv": "^8.6.3",
"async": "^3.2.1",
"commander": "^8.2.0",
"convert-hrtime": "^5.0.0",
"ejs": "^3.1.6",
"flush-write-stream": "^2.0.0",
"fs-extra": "^10.0.0",
"gremlin": "^3.5.1",
"handlebars": "^4.7.7",
"json-source-map": "^0.6.1",
"jsonlint": "^1.6.3",
"JSONStream": "^1.3.5",
"knex": "^0.95.11",
"mssql": "^7.2.1",
"mysql2": "^2.3.0",
"parallel-transform": "^1.2.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5",
"single-line-log": "^1.1.2",
"sqlite3": "^5.0.2",
"through2": "^4.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/async": "^3.2.8",
"@types/convert-hrtime": "^3.0.2",
"@types/ejs": "^3.1.0",
"@types/flush-write-stream": "^1.0.0",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"@types/mssql": "^7.1.3",
"@types/node": "^16.9.4",
"@types/parallel-transform": "^1.1.1",
"@types/sequelize": "^4.28.10",
"@types/single-line-log": "^1.1.0",
"@types/through2": "^2.0.36",
"@types/uuid": "^8.3.1",
"coveralls": "^3.1.1",
"jest": "^27.2.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.3",
"typescript-json-schema": "^0.51.0"
},
"engines": {
"node": ">=6.0.0"
},
"bin": "./lib/cli.js",
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
}
}