-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "@lambdog/server",
"publishConfig": {
"access": "public",
"tag": "next"
},
"version": "0.3.0-beta.9",
"description": "It's part lamb. It's part dog. It's lambdog.",
"main": "dist/lambdog-server.js",
"module": "dist/lambdog-server.module.js",
"source": "src/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/donavon/lambdog-server.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint src",
"test": "jest --verbose --coverage --silent",
"test:watch": "jest --watch --runInBand --silent",
"prebuild": "npm run lint && npm t && rimraf module",
"build": "microbundle src/index.js -f modern,cjs --target node --sourcemap false --compress --external crypto"
},
"keywords": [
"utils",
"lib",
"lambda",
"aws",
"netlify",
"functions"
],
"author": "Donavon West <[email protected]> (https://github.com/donavon)",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/aws-lambda": "^8.10.51",
"babel-jest": "^25.2.6",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"jest": "^25.2.7",
"microbundle": "^0.12.0",
"rimraf": "^3.0.2"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}