-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "middy-appsync",
"sideEffects": false,
"version": "1.0.0-beta.2",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint src/",
"test": "jest",
"build": "rm -rf dist/* && tsc",
"prepublish": "npm run test && npm run build"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bboure/middy-appsync.git"
},
"author": "bboure",
"license": "ISC",
"bugs": {
"url": "https://github.com/bboure/middy-appsync/issues"
},
"homepage": "https://github.com/bboure/middy-appsync#readme",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@babel/preset-typescript": "^7.13.0",
"@middy/core": "^1.5.2",
"@semantic-release/git": "^9.0.0",
"@types/aws-lambda": "^8.10.72",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"typescript": "^4.1.5"
},
"dependencies": {},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}