-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
38 lines (38 loc) · 1.45 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
{
"name": "@serverless-components/express",
"private": true,
"author": "Serverless, Inc.",
"license": "Apache",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"lint:updated": "pipe-git-updated --ext=js -- eslint --ignore-path .gitignore",
"postinstall": "./scripts/install-nested-packages.js",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,yaml,yml}\"",
"prettier-check:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,yaml,yml}\"",
"prettify:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=yaml --ext=yml -- prettier --write",
"publish": "components registry publish",
"publish:dev": "components registry publish --dev",
"test": "jest --bail 1 --testEnvironment node ./test/integration.test.js"
},
"devDependencies": {
"@serverless/components": "^2.31.6",
"@serverless/eslint-config": "^2.1.1",
"@serverless/platform-client": "^0.24.0",
"aws-sdk": "^2.704.0",
"axios": ">=0.21.1",
"dotenv": "^8.2.0",
"eslint": "^7.3.1",
"eslint-plugin-import": "^2.21.2",
"git-list-updated": "^1.2.1",
"jest": "^25.5.4",
"prettier": "^2.0.5"
},
"eslintConfig": {
"extends": "@serverless/eslint-config/node",
"root": true,
"rules": {
"no-console": "off"
}
}
}