-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "data-bakery",
"version": "1.1.1",
"description": "A tool to prepare test SQL data for integration tests",
"main": "./src/recipe-helper.js",
"scripts": {
"test": "jest"
},
"bin": {
"data-bakery": "./src/cli.js"
},
"author": "Dan Bartram",
"license": "MIT",
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"commander": "^10.0.0",
"glob": "^8.1.0",
"winston": "^3.8.2"
},
"repository": {
"type": "git",
"url": "git://github.com/danbartram/data-bakery.git"
},
"keywords": [
"test data",
"text fixtures",
"sql",
"mysql",
"testing"
]
}