-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
58 lines (58 loc) · 1.82 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
{
"name": "serverless-localstack",
"version": "1.3.1",
"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_PATH=spec/support/jasmine.json jasmine",
"test:watch": "JASMINE_CONFIG_PATH=spec/support/jasmine.json jasmine",
"test:integration": "JASMINE_CONFIG_PATH=spec/support/jasmine_integration.json jasmine",
"test:integration:watch": "JASMINE_CONFIG_PATH=spec/support/jasmine_integration.json nodemon -L -i spec/integrate ./node_modules/.bin/jasmine",
"test:cover": "jasmine --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/localstack/serverless-localstack"
},
"author": "LocalStack Team <[email protected]>",
"contributors": [
"LocalStack Team <[email protected]>",
"Waldemar Hummer (whummer)",
"Ben Simon Hartung (bentsku)",
"Joel Scheuner (joe4dev)",
"temyers",
"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": {
"adm-zip": "^0.5.10",
"aws-sdk": "^2.402.0",
"es6-promisify": "^6.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-string": "^1.4.0",
"eslint": "^8.56.0",
"fs-extra": "^7.0.0",
"jasmine": "^3.2.0",
"js-yaml": ">=3.13.1",
"json2yaml": "^1.1.0",
"lodash": ">=4.17.13",
"mixin-deep": ">=1.3.2",
"nodemon": "^2.0.20",
"prettier": "^3.2.5",
"rimraf": "^2.6.2",
"serverless": "^2.30.0",
"set-value": ">=2.0.1",
"sinon": "^6.2.0",
"tempy": "^0.2.1"
}
}