forked from mickhansen/google-sheets-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 939 Bytes
/
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
{
"name": "google-sheets-orm",
"version": "1.5.2",
"description": "",
"main": "dist/node.js",
"browser": "dist/browser.js",
"types": "index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"prepublish": "npm run build",
"build": "webpack --config webpack.config.node.js",
"watch": "webpack --watch --config webpack.config.js",
"test": "mocha test",
"typecheck": "tsc -p . --noEmit"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/gapi.client.drive": "^3.0.13",
"@types/gapi.client.sheets": "^4.0.20201029",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.28",
"chai": "^4.3.0",
"googleapis": "^67.0.0",
"mocha": "^8.3.0",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"lodash": "^4.17.20"
}
}