-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "step-function-worker",
"version": "0.0.3",
"description": "Easy AWS step function activity worker in node.js",
"main": "index.js",
"scripts": {
"lint": "xo",
"test": "nyc ava test/scenarios/* --timeout 5m",
"semantic-release": "semantic-release",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"engines": {
"node": ">=6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/piercus/step-function-worker.git"
},
"keywords": [
"step-function",
"worker",
"aws",
"stepfunction",
"activity"
],
"author": "Pierre Colle <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/piercus/step-function-worker/issues"
},
"xo": {
"rules": {
"ava/use-test": 1
}
},
"ava": {
"timeout": 120000
},
"homepage": "https://github.com/piercus/step-function-worker#readme",
"devDependencies": {
"ava": "^3.15.0",
"bluebird": "^3.5.3",
"nyc": "^15.1.0",
"semantic-release": "^17.2.3",
"winston": "^2.4.1",
"xo": "^0.24.0"
},
"dependencies": {
"aws-arn-parser": "^1.0.0",
"aws-sdk": "^2.82.0"
}
}