forked from FlamingTempura/tiny-xlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "@alsoasked/tiny-xlsx",
"version": "1.0.7",
"type": "module",
"description": "Simple XLSX generator",
"module": "dist/index.js",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"test": "tap test.ts",
"build": "tsc",
"lint": "echo \"Linting with eslint...\" && yarn lint:eslint && echo \"Success!\" && echo \"Linting with tsc...\" && yarn lint:tsc && echo \"Success!\"",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint \"./src/**/*.ts\""
},
"author": "FlamingTempura",
"license": "MIT",
"dependencies": {
"entities": "^4.5.0",
"fflate": "^0.8.2"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^52.0.0",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"tap": "^18.7.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1",
"xlsx": "^0.18.5"
},
"packageManager": "[email protected]",
"tap": {
"typecheck": true,
"tsconfig": "tsconfig.test.json"
}
}