-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"version": "0.0.1",
"name": "antares-mysql-dumper",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"description": "MySQL dumper",
"homepage": "https://github.com/antares-sql/antares-mysql-dumper",
"repository": {
"type": "git",
"url": "https://github.com/antares-sql/antares-mysql-dumper"
},
"author": "Jan Prochazka",
"license": "MIT",
"keywords": [
"SQL",
"MySQL",
"dump",
"export"
],
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"test:local": "cross-env HOST=localhost PORT=15001 jest",
"test": "yarn build && yarn test:local",
"dc:up": "cd src/test && docker-compose up -d",
"dc:down": "cd src/test && docker-compose down",
"test:ci": "jest --json --outputFile=result.json --testLocationInResults",
"prepare": "yarn build"
},
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.7.0",
"cross-env": "^7.0.3",
"dbgate-query-splitter": "^4.8.3",
"jest": "^24.9.0",
"mysql2": "^2.3.3",
"ts-jest": "^25.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@turf/helpers": "^6.5.0",
"moment": "^2.29.2"
}
}