-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "@corsali/userdata-extractor",
"version": "0.3.1",
"author": "Vana",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"test": "yarn jest",
"typecheck": "yarn tsc --project ./tsconfig-typecheck.json",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"build": "yarn clean && tsc -p .",
"prepublish": "yarn typecheck && yarn lint && yarn build"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"devDependencies": {
"@corsali/eslint-config": "^1.4.0",
"@corsali/prettier-config": "^1.0.0",
"@types/jest": "^27.0.2",
"@types/jsonpath": "^0.2.0",
"@types/lodash.mapvalues": "^4.6.7",
"@types/node": "^16.11.6",
"@types/papaparse": "^5.3.5",
"@types/sql.js": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"esbuild": "^0.14.46",
"esbuild-jest": "^0.5.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-typescript": "0.14.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.6.4",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"@zip.js/zip.js": "2.4.21",
"axios": "^0.27.2",
"jsonpath": "^1.1.1",
"lodash.mapvalues": "^4.6.0",
"papaparse": "^5.3.2",
"sql.js": "^1.8.0"
}
}