-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.48 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.48 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
{
"name": "fullstack-bulletin-create-issue",
"version": "1.2.7",
"description": "Serverless step function to create fullstack bulletin newsletter issue",
"main": "index.js",
"type": "module",
"scripts": {
"postinstall": "find ./functions -type d -maxdepth 1 -mindepth 1 -execdir sh -c 'cd {} && npm install --ignore-scripts' \\;",
"test:lint": "eslint ./**/*.js",
"test:unit": "vitest run --coverage",
"test": "npm run test:lint && npm run test:unit",
"release:tag": "git tag $npm_package_version && git push --tags",
"release:deploy": "sam deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FullStackBulletin/sls-create-newsletter-issue.git"
},
"author": "Luciano Mammino & Andrea Mangano",
"license": "MIT",
"bugs": {
"url": "https://github.com/FullStackBulletin/sls-create-newsletter-issue/issues"
},
"homepage": "https://github.com/FullStackBulletin/sls-create-newsletter-issue#readme",
"devDependencies": {
"@vitest/coverage-v8": "^0.32.0",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"mock-require": "^2.0.1",
"msw": "^1.2.2",
"nock": "^9.0.9",
"serverless": "^3.4.0",
"sinon": "^7.3.2",
"tap-spec": "^5.0.0",
"vitest": "^0.32.0"
}
}