-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.75 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
{
"name": "@mountainpass/server-agnostic-functions-cloudflare",
"version": "1.0.63",
"description": "Provides an interface for writing server-agnostic (serverless) functions.",
"author": "Mountain Pass <info@mountain-pass.com.au>",
"contributors": [
"Nick Grealy <nickgrealy@gmail.com>",
"Nick Grealy <nick@mountain-pass.com.au>"
],
"keywords": [
"serverless",
"functions",
"cloudflare",
"aws",
"azure",
"google",
"express",
"server-agnostic"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mountain-pass/server-agnostic-functions.git"
},
"bugs": {
"url": "https://github.com/mountain-pass/server-agnostic-functions/issues"
},
"homepage": "https://github.com/mountain-pass/server-agnostic-functions#readme",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12"
},
"scripts": {
"testx": "ts-mocha -p tsconfig.test.json --timeout 3000 --bail --recursive './test/**/*.test.ts' './test/*.test.ts' --reporter-option maxDiffSize=8128",
"test": "echo disabled tests.",
"test:watch": "nodemon --watch test --watch src --exec 'npm test'",
"build": "microbundle --format cjs --target web --sourcemap false src/*.ts src/**/*.ts",
"version-bump": "npm version patch && git push && git push --tags",
"publish-public": "npm publish --access public",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "eslint --fix --ext .js,.ts src",
"prettier": "prettier --write 'src/**/*.{js,ts,json}|*.{js,ts,json}'",
"pretty-quick": "pretty-quick",
"precommit": "yarn pretty-quick && yarn lint && yarn build"
},
"dependencies": {
"@cloudflare/workers-types": "4.20221111.1",
"@mountainpass/server-agnostic-functions-core": "^1.0.63"
},
"devDependencies": {
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"chai": "4.3.7",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.1",
"eslint-plugin-standard": "4.1.0",
"express": "4.18.2",
"microbundle": "0.15.1",
"mocha": "10.2.0",
"nodemon": "2.0.20",
"prettier": "2.8.3",
"pretty-quick": "3.1.3",
"supertest": "6.3.3",
"ts-mocha": "10.0.0",
"typescript": "4.9.4"
},
"gitHead": "2f7c77b8553487765775857a7fdf5189eeae0bc9"
}