-
Notifications
You must be signed in to change notification settings - Fork 403
/
package.json
76 lines (76 loc) · 2.02 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
{
"name": "airtable",
"version": "0.12.2",
"license": "MIT",
"homepage": "https://github.com/airtable/airtable.js",
"repository": "git://github.com/airtable/airtable.js.git",
"private": false,
"scripts": {
"pretest": "npm run lint && npm run prepare && cp build/airtable.browser.js test/test_files; true",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"format": "prettier --write '**/*.[j|t]s'",
"test": "jest --env node --coverage --no-cache",
"test-unit": "jest --env node",
"prepare": "rm -rf lib/* && rm -f build/airtable.browser.js && tsc && cp lib/airtable.js lib/tmp_airtable.js && grunt browserify && rm lib/tmp_airtable.js"
},
"dependencies": {
"@types/node": ">=8.0.0 <15",
"abort-controller": "^3.0.0",
"abortcontroller-polyfill": "^1.4.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7"
},
"main": "./lib/airtable.js",
"types": "./lib/airtable.d.ts",
"browser": {
"node-fetch": false,
"abort-controller": false,
"./lib/airtable.js": "./lib/airtable.umd.js",
"./lib/package_version": "./lib/package_version_browser"
},
"files": [
"/README.md",
"/CHANGELOG.md",
"/LICENSE.txt",
"/build/airtable.browser.js",
"/lib/"
],
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/lodash": "^4.14.157",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"body-parser": "^1.19.0",
"envify": "^4.1.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"get-port": "^5.0.0",
"grunt": "^1.3.0",
"grunt-browserify": "^5.3.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"semver": "^6.3.0",
"typescript": "^3.9.5"
},
"keywords": [
"airtable",
"productivity",
"database",
"spreadsheet"
],
"engines": {
"node": ">=8.0.0"
}
}