-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "aws-apache-to-json",
"version": "0.1.0",
"author": "ZachTRice",
"description": "Serverless function to process Apache logs into JSON",
"license": "MIT",
"homepage": "https://github.com/ZachTRice/aws-apache-to-json#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ZachTRice/aws-apache-to-json.git"
},
"bugs": {
"url": "https://github.com/ZachTRice/aws-apache-to-json/issues"
},
"main": "handler.js",
"scripts": {
"compile": "babel --presets @babel/preset-env -d lib/ src/",
"deploy": "serverless deploy",
"lint": "eslint .",
"predeploy": "npm test",
"test": "npm run lint && npm run test:unit",
"test:unit": "npm run compile && mocha --require @babel/register ./lib/main/node/*.spec.js"
},
"dependencies": {
"moment": "^2.21.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.0.4",
"serverless-offline": "^3.18.0",
"serverless-webpack": "^4.0.0",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^3.6.0"
}
}