-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.88 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
{
"name": "incoming-handler",
"version": "1.1.10",
"description": "A library/framework to build a thing to respond to http requests",
"private": false,
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
},
"./adapter-workers": {
"import": "./dist/adapters/workers/index.js",
"require": "./dist/adapters/workers/index.cjs"
},
"./adapter-lambda": {
"import": "./dist/adapters/lambda/index.js",
"require": "./dist/adapters/lambda/index.cjs"
},
"./adapter-node": {
"import": "./dist/adapters/node/index.js",
"require": "./dist/adapters/node/index.cjs"
}
},
"typesVersions": {
"*": {
"adapter-workers": [
"dist/adapters/workers/index.d.ts"
],
"adapter-lambda": [
"dist/adapters/lambda/index.d.ts"
],
"adapter-node": [
"dist/adapters/node/index.d.ts"
]
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"type": "module",
"devDependencies": {
"@netlify/functions": "^0.10.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/jest": "*",
"@types/node": "^16.11.4",
"jest": "^27.3.1",
"rollup": "^2.58.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-ts": "^1.4.7",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "4.4.4"
},
"author": {
"name": "Arnor Heidar Sigurdsson",
"email": "[email protected]",
"url": "https://arnorhs.dev"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/arnorhs/arnorhs-packages.git",
"directory": "pkg/incoming-handler"
},
"readmeFilename": "README.md",
"publishConfig": {
"access": "public"
}
}