forked from XappMedia/serverless-setup-elasticsearch-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "@xapp/serverless-setup-elasticsearch-plugin",
"version": "0.1.4",
"description": "This is a plugin that can be used by Serverless to setup an elasticsearch domain.",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf ./node_modules && rm -rf ./outputs && rm -rf ./dist",
"build": "tsc",
"lint": "tslint './src/**/*.ts' && tslint './test/**/*.ts'",
"pretest": "npm run build",
"test": "nyc mocha \"./test/**/*.ts\"",
"version:release": "standard-version --message '[skip ci] v%s'",
"postversion:release": "git push --follow-tags origin master && npm publish",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/XappMedia/serverless-setup-elasticsearch-plugin.git"
},
"devDependencies": {
"@types/chai": "4.2.8",
"@types/mocha": "7.0.1",
"@types/request": "2.48.4",
"@types/request-promise-native": "1.0.17",
"@types/sinon": "7.5.1",
"@types/sinon-chai": "3.2.3",
"@xapp/serverless-plugin-type-definitions": "0.2.2",
"chai": "4.2.0",
"mocha": "7.0.1",
"nyc": "15.0.0",
"sinon": "8.1.1",
"sinon-chai": "3.4.0",
"standard-version": "7.1.0",
"ts-node": "8.6.2",
"tslint": "6.0.0",
"typescript": "3.7.5"
},
"dependencies": {
"@types/aws4": "1.5.1",
"aws-sdk": "2.614.0",
"aws4": "1.9.1",
"request": "2.88.0",
"request-promise-native": "1.0.8"
},
"peerDependencies": {
"aws-sdk": "2.X"
}
}