-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "@evdhiggins/airtable-sync",
"version": "0.2.5",
"description": "A one-way sync from a local datasource to Airtable",
"main": "./built/main.js",
"types": "built/main.d.ts",
"scripts": {
"build": "tsc -p .",
"publish:patch": "npm run build && npm version patch && npm publish",
"test": "npx jest",
"tests": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evdhiggins/airtable-sync.git"
},
"keywords": [
"airtable",
"sync"
],
"author": "Evan Higgins <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/evdhiggins/airtable-sync/issues"
},
"homepage": "https://github.com/evdhiggins/airtable-sync#readme",
"devDependencies": {
"@types/better-sqlite3": "^5.4.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.3",
"dotenv": "^8.0.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"dependencies": {
"airtable": "^0.7.0",
"better-sqlite3": "^5.4.0",
"pg-promise": "^8.7.4"
}
}