-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"name": "@malvfr/zap",
"version": "1.0.5",
"description": "Database data seeding tool, outputting realistic SQL and CSV data",
"bin": {
"zap": "build/cli/cli.js"
},
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"start:debug": "nodemon --debug --watch",
"build": "rimraf ./build && tsc && npm link",
"start:dev": "nodemon --watch 'src/**/*.ts' --exec 'node --inspect=0.0.0.0:9229 --require ts-node/register src/cli/cli.ts -df input.yml -l 'pt_BR''",
"lint": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/malvfr/zap.git"
},
"keywords": [
"database",
"fixture",
"data",
"mock",
"generation",
"sql",
"cli",
"node",
"typescript",
"csv",
"seed",
"seeding",
"populate",
"batch"
],
"author": "Matheus Alvarenga",
"license": "ISC",
"bugs": {
"url": "https://github.com/malvfr/zap/issues"
},
"homepage": "https://github.com/malvfr/zap#readme",
"devDependencies": {
"@types/faker": "^5.5.1",
"@types/jest": "^26.0.19",
"@types/js-yaml": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"commander": "^7.2.0",
"faker": "^5.5.3",
"js-yaml": "^4.1.0"
}
}