-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.88 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.88 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
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
113
114
115
116
117
118
119
120
121
122
{
"name": "tinytick",
"version": "1.2.8",
"author": "jamesgpearce",
"repository": "github:tinyplex/tinytick",
"license": "MIT",
"homepage": "https://tinytick.org",
"description": "A tiny but very useful JavaScript task orchestrator.",
"keywords": [
"task",
"orchestrator",
"scheduling",
"tiny"
],
"type": "module",
"browser": {
"fs": false
},
"sideEffects": false,
"private": true,
"scripts": {
"lintFiles": "gulp lintFiles",
"lintDocs": "gulp lintDocs",
"lint": "gulp lint",
"spell": "gulp spell",
"ts": "gulp ts",
"test": "gulp --series testUnit testPerf",
"preparePackage": "gulp preparePackage",
"compileForTest": "gulp compileForTest",
"compileForProd": "gulp compileForProd",
"compileForProdFast": "gulp compileForProdFast",
"testUnit": "gulp testUnit",
"compileAndTestUnit": "gulp compileAndTestUnit",
"testUnitFast": "gulp testUnitFast",
"compileAndTestUnitFast": "gulp compileAndTestUnitFast",
"testUnitCountAsserts": "gulp testUnitCountAsserts",
"testUnitSaveCoverage": "gulp testUnitSaveCoverage",
"compileAndTestUnitSaveCoverage": "gulp compileAndTestUnitSaveCoverage",
"testPerf": "gulp testPerf",
"compileAndTestPerf": "gulp compileAndTestPerf",
"testE2e": "gulp testE2e",
"testProd": "gulp testProd",
"compileAndTestProd": "gulp compileAndTestProd",
"compileDocsPagesOnly": "gulp compileDocsPagesOnly",
"compileDocsAssetsOnly": "gulp compileDocsAssetsOnly",
"compileDocs": "gulp compileDocs",
"compileForProdAndDocs": "gulp compileForProdAndDocs",
"serveDocs": "gulp serveDocs",
"preCommit": "gulp preCommit",
"prePublishPackage": "gulp prePublishPackage",
"publishPackage": "gulp publishPackage"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=23.10.0",
"onFail": "warn"
},
"packageManager": {
"name": "npm",
"version": ">=10.9.2",
"onFail": "warn"
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.27.0",
"@prettier/sync": "^0.5.5",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/http-server": "^0.12.4",
"@types/jest": "^29.5.14",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/node": "^22.15.19",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.3.2",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"buffer-replace": "^2.0.0",
"cspell": "^9.0.1",
"esbuild": "^0.25.4",
"eslint": "^9.27.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsdoc": "^50.6.17",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.1.0",
"gulp": "^5.0.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rollup": "^4.41.0",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-prettier": "^4.1.2",
"tinybase": "^6.1.1",
"tinydocs": "^0.1.57",
"tinytick": "file:./dist",
"ts-unused-exports": "^11.0.1",
"typescript": "5.8.3",
"typescript-eslint": "^8.32.1"
}
}