-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "@xhubio/nanook-table",
"version": "2.1.1",
"type": "module",
"description": "Toolkit for test case and test data creation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "pnpm format && pnpm lint && pnpm build && vitest run --coverage",
"lint": "eslint \"{src,tests}/**/*.ts\"",
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"format:check": "prettier --check \"{src,tests}/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/clone": "2.1.4",
"@types/node": "25.9.1",
"@types/sprintf-js": "1.1.4",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitest/coverage-v8": "4.0.18",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-tsdoc": "0.5.2",
"globals": "17.4.0",
"prettier": "3.8.1",
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"dependencies": {
"@faker-js/faker": "10.3.0",
"clone": "2.1.2",
"spreadsheet-column": "1.1.1",
"sprintf-js": "1.1.3",
"uuid": "13.0.0",
"xlsx": "0.18.5"
}
}