-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "serverless-step-functions-offline",
"version": "2.1.4",
"description": "Serverlesss plugin to support step function offline",
"main": "index.js",
"author": "viktor.kis <vkkis1993@gmail.com>",
"bugs": {
"url": "https://github.com/vkkis93/serverless-step-functions-offline/issues"
},
"homepage": "https://github.com/vkkis93/serverless-step-functions-offline#readme",
"repository": {
"type": "git",
"url": "git@github.com:vkkis93/serverless-step-functions-offline.git"
},
"scripts": {
"test": "nyc ./node_modules/mocha/bin/mocha ./tests/index.test.js './tests/!(index).test.js'",
"lint": "eslint '**/*.{js,jsx}' --quiet"
},
"dependencies": {
"bluebird": "^3.5.1",
"lodash": "^4.17.15",
"moment": "^2.20.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.6.0",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"pre-commit": "^1.1.3",
"serverless": "^1.25.0",
"sinon": "^4.2.1"
},
"nyc": {
"include": [
"*.js"
]
},
"pre-commit": [
"lint"
],
"keywords": [
"aws",
"lambda",
"serverless",
"step functions",
"serverless-step-functions-offline"
],
"license": "MIT"
}