forked from goldwasserexchange/serverless-plugin-webpack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.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
{
"name": "@awkward/serverless-plugin-webpack",
"version": "1.4.1",
"description": "Serverless Plugin Webpack",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/awkward/serverless-plugin-webpack.git"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "jest --coverage"
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"comma-dangle": [
2,
"always-multiline"
],
"linebreak-style": 0,
"valid-jsdoc": 2
},
"env": {
"node": true
}
},
"author": "Timon van Spronsen <[email protected]>",
"contributors": [
"Jonathan Goldwasser <[email protected]>"
],
"license": "MIT",
"dependencies": {
"fs-extra": "^5.0.0",
"ramda": "^0.25.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1"
},
"peerDependencies": {
"webpack": "2.x || 3.x"
}
}