-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "google-spreadsheets-orm",
"version": "1.0.3",
"description": "Production-ready ORM applying data-mapper pattern to consume google spreadsheets.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:tsc": "tsc --noemit",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"build": "tsc --build tsconfig.json ."
},
"engines": {
"npm": ">=8.0.0",
"node": ">=14.0.0"
},
"keywords": [
"orm",
"data mapper",
"spreadsheets",
"google spreadsheets"
],
"author": "joseffffff",
"repository": {
"type": "git",
"url": "https://github.com/joseffffff/google-spreadsheets-orm.git"
},
"license": "MIT",
"dependencies": {
"googleapis": "^134.0.0",
"luxon": "^3.4.4",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@faker-js/faker": "^8.4.1",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"eslint": "^8.56.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"prettier": "^3.2.5",
"typescript": "^5.4.4"
}
}