-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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": "spreadsheet-sql",
"version": "1.1.1",
"description": "Get google spreadsheet data by using like SQL",
"main": "./dist/index.js",
"types": "./lib/Index.d.ts",
"files": [
"dist/index.js",
"lib/**/*.d.ts",
"README.md",
"package.json",
"package-lock.json"
],
"scripts": {
"test": "npm run build && jest",
"lint": "prettier \"{lib,test}/**/*.ts\" --check",
"lint+write": "prettier \"{lib,test}/**/*.ts\" --write",
"build": "webpack --mode production && tsc -d",
"subscribe": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JumpeiArashi/spreadsheet-sql.git"
},
"keywords": [
"google",
"spreadsheet",
"sql",
"charts",
"visualization"
],
"author": "JumpeiArashi",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/JumpeiArashi/spreadsheet-sql/issues"
},
"homepage": "https://github.com/JumpeiArashi/spreadsheet-sql#readme",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.7",
"babel-jest": "^28.1.3",
"jest": "^28.1.3",
"npm-check-updates": "^16.0.5",
"prettier": "^2.7.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"axios": "^0.27.2",
"google-auth-library": "^8.2.0"
}
}