forked from rap2hpoutre/pg-anonymizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "pg-anonymizer",
"description": "Export your postgreSQL database anonymized",
"version": "1.0.0",
"author": "Raphaël Huchet @rap2hpoutre",
"bin": {
"pg-anonymizer": "./bin/run"
},
"bugs": "https://github.com/rap2hpoutre/pg-anonymizer/issues",
"dependencies": {
"@oclif/command": "^1.8.16",
"@oclif/config": "^1.18.2",
"@oclif/plugin-help": "^5.1.10",
"@types/faker": "^5.5.9",
"faker": "^5.2.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.6",
"eslint": "^8.6.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"semantic-release": "^19.0.2",
"ts-node": "^10.4.0",
"typescript": "4.4.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/rap2hpoutre/pg-anonymizer",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "pg-anonymizer"
},
"repository": "rap2hpoutre/pg-anonymizer",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}