-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "@nealwp/blobview",
"version": "0.2.0",
"description": "Generate BigQuery SQL views from JSON",
"bin": {
"@nealwp/blobview": "./index.js"
},
"scripts": {
"test": "jest",
"build": "rimraf ./dist && npx tsc && copyfiles package.json LICENSE README.md dist/",
"lint": "eslint"
},
"keywords": [
"cli",
"sql generation",
"json"
],
"repository": {
"type": "git",
"url": "https://github.com/nealwp/blobview.git"
},
"author": "nealwp",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/minimist": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"copyfiles": "^2.4.1",
"eslint": "^8.37.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"minimist": "^1.2.8"
}
}