-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "flat",
"version": "3.4.0",
"description": "The GitHub action which powers data fetching for Flat",
"main": "index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license LICENSE --target es2020 lib/main.js",
"package-post": "ncc build --target es2020 lib/post.js -o dist/post",
"dist": "npm run build && npm run package && npm run package-post",
"format": "prettier --write **/*.ts",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/githubocto/flat.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/githubocto/flat/issues"
},
"homepage": "https://github.com/githubocto/flat#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@tinyhttp/content-disposition": "^1.2.0",
"axios": "^0.21.1",
"connection-string": "^4.3.2",
"csv-stringify": "^5.6.2",
"es-mime-types": "^0.0.16",
"mssql": "^6.3.1",
"mysql": "^2.18.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.6",
"typeorm": "^0.2.31",
"zod": "^3.0.0-alpha.4"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.37",
"@vercel/ncc": "^0.27.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typescript": "^4.1.5"
},
"volta": {
"node": "16.20.0"
}
}