-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1 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
{
"name": "@anywaydata/core",
"version": "1.4.0",
"type": "module",
"private": false,
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./mcp/*": "./js/mcp/*",
"./faker/*": "./js/faker/*",
"./domain/*": "./js/domain/*",
"./command-help/*": "./js/command-help/*",
"./data_formats/*": "./js/data_formats/*",
"./data_generation/*": "./js/data_generation/*",
"./grid/*": "./js/grid/*",
"./utils/*": "./js/utils/*",
"./libs/*": "./js/libs/*"
},
"files": [
"src",
"js"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node -e \"console.log('core: no build step')\"",
"test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --config ../../jest.config.cjs --testPathPatterns packages/core/src/tests"
},
"dependencies": {
"@faker-js/faker": "10.5.0",
"chrono-node": "^2.9.1",
"date-fns": "^4.4.0",
"date-fns-tz": "^3.2.0",
"papaparse": "5.5.3",
"randexp": "0.5.3"
}
}