-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 842 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
38
{
"name": "painless-airtable",
"version": "0.3.0",
"description": "Easily interact with the Airtable API",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"build": "npm run test && tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/markusand/painless-airtable"
},
"keywords": [
"javascript",
"airtable",
"api",
"painless"
],
"author": "Marc Vilella",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.3",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"dist"
]
}