forked from mj1618/serverless-offline-sns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.76 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "serverless-offline-sns",
"version": "0.64.0",
"description": "Serverless plugin to run a local SNS server and call lambdas with events notifications.",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p src",
"watch": "tsc -p src -w",
"test": "nyc ts-mocha \"test/**/*.ts\" -p src/",
"lint": "tslint -p src/",
"prepare": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mj1618/serverless-offline-sns.git"
},
"keywords": [
"serverless-plugin",
"serverless",
"sns",
"offline",
"localstack"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Matthew James <matthew.stephen.james@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mj1618/serverless-offline-sns/issues"
},
"homepage": "https://github.com/mj1618/serverless-offline-sns#readme",
"dependencies": {
"aws-sdk": "^2.403.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.15.4",
"lodash": "^4.17.4",
"node-fetch": "^1.7.3",
"uuid": "^3.1.0",
"xml": "^1.0.1"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/express": "^4.0.37",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.25",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^6.0.1",
"nyc": "^11.2.1",
"source-map-support": "^0.4.18",
"ts-loader": "^2.3.7",
"ts-mocha": "^1.0.3",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"typescript": "^2.5.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"include": [
"src/"
],
"reporter": [
"html",
"lcov"
],
"all": true
}
}