-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.5 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
59
60
61
{
"name": "serviceless",
"version": "0.1.1",
"description": "Cli tool on top of Serverless framework",
"main": "index.js",
"bin": {
"serviceless": "./index.js",
"slx": "./index.js",
"slsx": "./index.js"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"codecov": "codecov",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/threadheap/serviceless.git"
},
"keywords": [
"serverless",
"deploy",
"service",
"multiple",
"devops",
"circleci",
"travisci",
"aws",
"aws-lambda"
],
"author": "Pavel Vlasov <freakycue@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/threadheap/serviceless/issues"
},
"homepage": "https://github.com/threadheap/serviceless#readme",
"devDependencies": {
"codecov": "^3.0.0",
"eslint": "^4.15.0",
"eslint-config-recommended": "^2.0.0",
"jest": "^22.0.3"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.12.2",
"execa": "^0.9.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"inquirer": "^4.0.1",
"listr": "^0.13.0",
"listr-verbose-renderer": "^0.4.1",
"lodash": "^4.17.4",
"log-update": "^2.3.0"
},
"jest": {
"collectCoverageFrom": [
"src/**.js"
]
}
}