forked from localstack/serverless-localstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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": "serverless-localstack",
"version": "0.4.28",
"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://[email protected]/localstack/serverless-localstack"
},
"author": "temyers",
"contributors": [
"Waldemar Hummer (whummer)",
"Justin McCormick <[email protected]>",
"djKooks",
"yohei1126"
],
"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",
"lodash": ">=4.17.13",
"js-yaml": ">=3.13.1",
"set-value": ">=2.0.1",
"mixin-deep": ">=1.3.2"
}
}