-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.47 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
50
51
52
53
{
"name": "serverless-offline-localstack",
"version": "0.0.3",
"main": "./lib/index.js",
"keywords": [
"hooks",
"plugin",
"serverless",
"serverless-offline",
"localstack"
],
"author": "Adrian Jagnanan",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lookinglass-in/serverless-offline-localstack"
},
"scripts": {
"lint": "eslint .",
"lintFix": "eslint . --fix",
"test": "npm -v",
"test1": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"build": "npm run lint && npm run build:node",
"build:node": "cross-env BABEL_ENV=production babel src --out-dir lib",
"dev": "cross-env BABEL_ENV=production babel src --out-dir lib -w"
},
"dependencies": {
"babel-runtime": "6.26.0",
"aws-sdk": "2.128.0",
"bluebird": "3.5.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.0",
"chai": "4.1.2",
"cross-env": "5.0.5",
"eslint": "4.8.0",
"eslint-loader": "1.9.0",
"fs-extra": "4.0.2",
"jasmine": "2.8.0",
"mocha": "4.0.1",
"nodemon": "1.12.1",
"serverless": "1.23.0",
"sinon": "4.0.1",
"source-map-support": "0.5.0",
"webpack": "3.6.0",
"webpack-node-externals": "1.6.0"
},
"license": "ISC",
"description": "A serverless plugin to redirected AWS requests to a running Localstack instance."
}