-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.03 KB
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
{
"name": "serverless-seed",
"version": "0.3.15",
"description": "A Serverless plugin for optimizing deploys in Seed",
"main": "index.js",
"author": {
"name": "Anomaly Innovations",
"url": "https://anoma.ly"
},
"license": "MIT",
"scripts": {
"lint": "eslint . --fix --ext .js,.ts",
"test": "node tests/helpers/setup-versions.js && jest --no-watchman"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/tests/helpers/setup-tests.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/seed-run/serverless-seed.git"
},
"dependencies": {
"lodash": "^4.17.20",
"serverless": "2.15.0"
},
"devDependencies": {
"eslint": "^7.14.0",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
}
}