This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 2.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "asyncairtable",
"version": "2.3.1",
"description": "A lightweight, promisified airtable client",
"main": "./lib/asyncAirtable.js",
"types": "./lib/types/index.d.ts",
"files": [
"dist/**/*",
"lib/**/*",
"LICENSE.md",
"README.md"
],
"scripts": {
"test": "jest -i --no-cache --coverage",
"docs": "typedoc",
"check": "tsc --noEmit",
"build": "npm run build:js && npm run build:browser && npm run build:browser-min",
"build:js": "tsc",
"build:browser": "webpack -c ./webpack.config.js",
"build:browser-min": "webpack -c ./webpack.config.min.js",
"lint": "eslint ./ --fix --cache",
"format": "prettier ./ --write",
"prepublishOnly": "npm run build && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GV14982/async-airtable.git"
},
"keywords": [
"async",
"airtable",
"promise",
"asynchronus",
"air",
"table"
],
"author": {
"name": "Graham Vasquez",
"url": "https://github.com/GV14982"
},
"contributors": [
{
"name": "Cas Ibrahim",
"url": "https://github.com/mamacas"
},
{
"name": "Sean Metzgar",
"url": "https://github.com/seanmetzgar"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GV14982/async-airtable/issues"
},
"homepage": "https://github.com/GV14982/async-airtable#readme",
"dependencies": {
"@types/node": "^14.18.18",
"node-fetch": "^2.6.5"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv": "^8.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-jest": "^24.7.0",
"husky": "^4.3.8",
"jest": "^27.2.5",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"ts-jest": "^27.0.0",
"ts-loader": "^8.3.0",
"ts-node": "^9.0.0",
"typedoc": "^0.22.5",
"typescript": "^4.6.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,md,json}": "prettier --write"
}
}