-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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
{
"deprecated": false,
"name": "@thinkam/typeairtable",
"private": false,
"version": "1.1.2",
"description": "Data-Mapper Airtable for TypeScript, ES7, ES6, ES5. Supports Airtable database.",
"readmeFilename": "README.md",
"main": "./lib/main/index.js",
"types": "./src/main/index.d.ts",
"engines": {
"node": ">= 16.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/thinkam/typeairtable.git"
},
"bugs": {
"url": "https://github.com/thinkam/typeairtable/issues"
},
"homepage": "https://thinkam.net",
"tags": [
"orm",
"typescript",
"typescript-orm",
"airtable"
],
"scripts": {
"test": "jest --passWithNoTests --no-cache --runInBand",
"build": "rimraf lib && tsc --project ./tsconfig-build.json && tscpaths -p ./tsconfig-build.json -s ./src -o ./lib",
"test:watch": "npm test -- --watchAll",
"test:coverage": "npm test -- --coverage",
"test:staged": "npm test -- --findRelatedTests",
"start:dev": "tsc --watch",
"prepare": "husky install"
},
"author": "Caio Gomes",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.3.1",
"tsconfig-paths": "^4.1.0",
"tscpaths": "^0.0.9",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.7.8",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"ts-jest": "^28.0.7"
}
}