-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.28 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
{
"name": "airtable-lite",
"version": "1.6.1",
"description": "Light weight type safe Airtable API client",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"docs": "typedoc --out docs src/index.ts",
"fix": "npm run fix:lint && npm run fix:format",
"test": "npm run test:format && npm run test:lint && npm run test:spec",
"build:cjs": "tsc --target ES2020 --module commonjs src/index.ts",
"postbuild:cjs": "mv src/index.js dist/index.cjs",
"build:esm": "tsc",
"fix:format": "prettier --write 'src/**/*'",
"fix:lint": "eslint 'src/**/*' --fix",
"test:format": "prettier --check 'src/**/*'",
"test:lint": "eslint 'src/**/*'",
"test:spec": "NODE_OPTIONS=--experimental-vm-modules jest --ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pspeter3/airtable-lite.git"
},
"keywords": [
"airtable",
"typescript"
],
"author": "pspeter3",
"license": "MIT",
"bugs": {
"url": "https://github.com/pspeter3/airtable-lite/issues"
},
"homepage": "https://pspeter3.github.io/airtable-lite/",
"engines": {
"node": ">=12.20"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-tsdoc": "^0.2.11",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"typedoc": "^0.20.25",
"typescript": "^4.1.5"
},
"eslintConfig": {
"env": {
"jest/globals": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"eslint-plugin-tsdoc",
"jest"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
}
},
"jest": {
"collectCoverage": true,
"preset": "ts-jest"
},
"prettier": {
"tabWidth": 4
}
}