forked from localstack/serverless-localstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"name": "serverless-localstack",
"version": "0.4.12",
"description": "Connect Serverless to LocalStack!",
"main": "src/index.js",
"scripts": {
"lint": "node_modules/eslint/bin/eslint.js .",
"lint-fix": "node_modules/eslint/bin/eslint.js . --fix",
"test": "jasmine --config=spec/support/jasmine.json",
"test:watch": "jasmine --config=spec/support/jasmine.json",
"test:integration": "jasmine --config=spec/support/jasmine_integration.json",
"test:integration:watch": "nodemon -L -i spec/integrate ./node_modules/.bin/jasmine --config=spec/support/jasmine_integration.json",
"test:cover": "jasmine --coverage",
"prepublish": "npm run test",
"preversion": "npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/localstack/serverless-localstack"
},
"author": "temyers",
"contributors": [
"Justin McCormick <me@justinmccormick.com>",
"djKooks",
"yohei1126",
"Waldemar Hummer (whummer)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/localstack/serverless-localstack/issues"
},
"homepage": "https://github.com/localstack/serverless-localstack",
"dependencies": {
"aws-sdk": "^2.402.0",
"es6-promisify": "6.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-string": "^1.4.0",
"fs-extra": "^7.0.0",
"jasmine": "^3.2.0",
"json2yaml": "^1.1.0",
"nodemon": "^1.18.10",
"rimraf": "^2.6.2",
"serverless": "^1.37.1",
"sinon": "^6.2.0",
"tempy": "^0.2.1",
"eslint": "^5.5.0"
}
}