-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
93 lines (93 loc) · 2.12 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "sls-dev-tools",
"bin": {
"sls-dev-tools": "./lib/index.js"
},
"dependencies": {
"aws-sdk": "^2.655.0",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.17",
"chalk": "^4.0.0",
"commander": "^7.1.0",
"js-yaml": "^4.0.0",
"moment": "^2.24.0",
"node-emoji": "^1.10.0",
"open": "^8.0.2",
"prop-types": "^15.7.2",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^26.0.20",
"@types/js-yaml": "^4.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.6.3",
"prettier": "^2.0.4",
"release-it": "^14.0.3"
},
"scripts": {
"build": "babel ./src --out-dir lib",
"build-maps": "babel ./src --out-dir lib --source-maps",
"dev": "babel ./src --out-dir lib --watch",
"start": "node ./lib/index.js",
"debug": "node --nolazy --inspect-brk=9229 ./lib/index.js",
"lint": "eslint ./src",
"fix": "yarn lint --fix",
"test": "yarn lint && jest",
"release": "release-it"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
]
]
},
"files": [
"lib/**/*.js"
],
"description": "The Dev Tools for the Serverless World",
"version": "1.1.15",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Theodo-UK/sls-dev-tools.git"
},
"keywords": [
"serverless",
"sls",
"dev",
"tools",
"SAM",
"lambda",
"faas",
"EventBridge",
"aws",
"event registry",
"terminal",
"gui",
"theodo"
],
"author": "Ben Ellerby",
"license": "MIT",
"bugs": {
"url": "https://github.com/Theodo-UK/sls-dev-tools/issues"
},
"homepage": "https://github.com/Theodo-UK/sls-dev-tools#readme"
}