-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
34 lines (34 loc) · 847 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
{
"name": "sheetsql",
"version": "0.1.7",
"description": "Google Spreadsheet as a Database",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"setup-test": "node ./gen-serviceaccount.js",
"test": "npm run setup-test && npm run clean && jest",
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc",
"prepublish": "npm run build"
},
"precommit": [
"prettier"
],
"author": "Joway",
"license": "MIT",
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.158",
"@types/nedb": "^1.8.10",
"jest": "^24.9.0",
"ts-jest": "^26.1.4",
"tslint-jike-node": "0.0.18",
"typescript": "^3.3.4000"
},
"dependencies": {
"bluebird": "^3.5.3",
"googleapis": "^55.0.0",
"lodash": "^4.17.19"
}
}