-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "fake-time-series",
"description": "A flexible CLI tool and library for generating fake time series data. Perfect for testing, development, and demonstration purposes.",
"version": "1.1.0",
"author": "Tim Mikeladze <tim.mikeladze@gmail.com>",
"license": "MIT",
"keywords": [
"time series",
"data generator",
"fake data",
"mock data",
"testing",
"development",
"simulation",
"time series generator",
"synthetic data",
"data simulation",
"test data",
"time series data",
"data mocking",
"cli tool"
],
"repository": {
"type": "git",
"url": "https://github.com/TimMikeladze/fake-time-series"
},
"scripts": {
"dev": "concurrently \"pnpm build --watch\" \"pnpm storybook\" \"pnpm test\" ",
"build": "tsup",
"lint": "biome check --write --unsafe .",
"lint:ci": "biome check --unsafe .",
"test": "vitest",
"test:ci": "vitest run --coverage",
"commit": "cz",
"release": "pnpm build && pnpm release-it",
"link:self": "pnpm link --global",
"prepare": "lefthook install",
"cli": "pnpm build && ./dist/cli.js"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./cli": {
"require": "./dist/cli.js",
"import": "./dist/cli.mjs"
}
},
"bin": {
"fake-time-series": "./dist/cli.js"
},
"files": ["dist"],
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ryansonshine/commitizen": "4.2.8",
"@ryansonshine/cz-conventional-changelog": "3.3.4",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/ms": "^0.7.34",
"@types/node": "22.8.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-test-renderer": "18.3.0",
"@vitest/coverage-v8": "2.1.4",
"concurrently": "9.0.1",
"jsdom": "25.0.1",
"lefthook": "1.8.2",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-test-renderer": "18.3.1",
"release-it": "17.10.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.6.3",
"vitest": "2.1.4"
},
"pnpm": {
"overrides": {
"micromatch@<4.0.8": ">=4.0.8"
}
},
"dependencies": {
"chrono-node": "^2.7.7",
"commander": "^12.1.0",
"ms": "^2.1.3",
"p-limit": "^6.1.0"
}
}