forked from portable-cto/airtable-proxy-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.27 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
{
"name": "airtable-proxy-worker",
"version": "1.0.0",
"homepage": "https://github.com/portable-cto/airtable-proxy-worker",
"description": "A Cloudflare Worker that will proxy requests to the Airtable API",
"type": "module",
"scripts": {
"build": "wrangler publish ./src/index --dry-run --outdir ./dist",
"deploy": "wrangler publish ./src/index",
"dev": "wrangler dev ./src/index.js",
"prettier": "prettier --write 'src/*.js'",
"lint": "prettier --list-different 'src/*.js'",
"test": "npm run lint --silent && jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:local": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --silent=false --verbose false"
},
"main": "./src/index.js",
"author": "Karl L. Hughes <[email protected]>",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.3",
"jest": "^28.1.1",
"prettier": "1.14.2",
"wrangler": "^2.0.15"
},
"jest": {
"verbose": true,
"transform": {},
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"src"
]
}
}