forked from joostfarla/serverless-jshint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "serverless-eslint-plugin",
"version": "0.1.4",
"description": "Serverless ESLint Plugin - Detect errors and potential problems in your Lambda functions",
"main": "src/index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh:/git@github.com:nishantjain91/serverless-eslint-plugin.git"
},
"keywords": [
"serverless",
"aws",
"lambda",
"eslint",
"lint"
],
"author": "Nishant Jain <nishantjain91@protonmail.ch>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nishantjain91/serverless-eslint-plugin/issues"
},
"homepage": "https://github.com/nishantjain91/serverless-eslint-plugin#readme",
"dependencies": {
"bluebird": "^3.3.4",
"chalk": "^1.1.3",
"eslint": "^2.6.0",
"lodash": "^4.7.0"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"mocha": "^2.4.5",
"serverless": "^0.5.0"
}
}