-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.2 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.2 KB
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
{
"name": "@cds-au/testdata",
"version": "1.8.0",
"description": "Tools for the creation of manufactured test data for the Australian Consumer Data Right regime",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "tslint -p .",
"sync-schema": "rm -f ./src/schema/* && cp ../../schema/cdr-test-data-schema.json ./src/schema && node ./utils/create-schema-definitions.js",
"build": "rm -rf ./dist/ && tsc && chmod +x ./dist/cli.js && cp ./src/schema/* ./dist/schema/",
"publish": "npm publish --access public"
},
"author": "Data Standards Body",
"license": "MIT",
"devDependencies": {
"@types/consumer-data-standards": "^7.4.0",
"@types/lodash": "^4.17.20",
"@types/node": "^17.0.26",
"@types/uuid": "^9.0.0",
"@types/yargs": "^17.0.8",
"ajv": "^8.11.2",
"ajv-formats": "^2.1.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"better-ajv-errors": "^1.1.2",
"big-json": "^3.2.0",
"json-schema-to-typescript": "^15.0.4",
"short-unique-id": "^4.4.4",
"sync-request": "^6.1.0",
"uuid": "^9.0.0",
"yargs": "^17.3.1"
}
}