-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 976 Bytes
/
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
{
"name": "@socialgouv/csv-anonymify",
"decription": "Anonymize some CSV with faker.js data",
"version": "1.1.18",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"lint": "TIMING=1 eslint ./src --fix",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"test": "jest"
},
"dependencies": {
"@socialgouv/match-entities": "^1.1.18",
"csv": "^6.0.5",
"date-fns": "^2.28.0",
"faker": "^5.5.3",
"p-all": "^3.0.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"tsup": "^5.11.9",
"typescript": "^4.5.4"
}
}