-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.08 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
{
"name": "@makenew/serverless-nodejs",
"version": "9.0.1",
"description": "Package skeleton for a Node.js Serverless project on AWS Lambda.",
"type": "module",
"main": "index.js",
"exports": {
"import": "./index.js"
},
"module": "index.js",
"sideEffects": false,
"keywords": [
"node"
],
"homepage": "https://github.com/makenew/serverless-nodejs",
"bugs": "https://github.com/makenew/serverless-nodejs/issues",
"repository": "makenew/serverless-nodejs",
"license": "MIT",
"author": {
"name": "Evan Sosenko",
"email": "[email protected]"
},
"files": [
"index.js",
"lib",
"handlers",
"data",
"docs"
],
"scripts": {
"test": "c8 ava",
"pretest": "node index.js",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:debug": "ava debug --break",
"lint": "npm-run-all --parallel lint:*",
"lint:prettier": "prettier --check --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yml|yaml|graphql)'",
"lint:js": "eslint --ignore-path .gitignore --ext .js,.cjs,.mjs .",
"postversion": "git push --follow-tags",
"sls:package": "serverless package",
"sls:invoke": "serverless invoke local -f",
"deploy": "serverless deploy --aws-s3-accelerate --stage=$SERVERLESS_STAGE",
"example": "node examples",
"example:inspect": "node --inspect examples",
"format": "npm-run-all --parallel format:*",
"preformat": "prettier --write --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yml|yaml|graphql)'",
"format:js": "eslint --ignore-path .gitignore --fix --ext .js,.cjs,.mjs .",
"report": " c8 report"
},
"engines": {
"node": ">=18.12.0",
"npm": ">= 8.1.0"
},
"devDependencies": {
"@meltwater/examplr": "^7.0.0",
"ava": "^4.0.1",
"c8": "^7.11.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"npm-run-all": "^4.1.2",
"prettier": "^2.3.0",
"serverless": "^3.25.1"
}
}