-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 2.05 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
{
"name": "lambda-pdf",
"version": "0.0.1",
"description": "Processes PDF files on AWS Lambda",
"main": "bin/index.js",
"scripts": {
"build": "npm run build:init && npm run build:bin && npm run build:js && npm run build:install",
"build:init": "rm -rf dist && mkdir dist",
"build:bin": "cp bin/* dist/",
"build:js": "babel index.js --out-dir dist && babel src --out-dir dist/src",
"build:install": "cp package.json dist/ && cd dist && npm install --production",
"package": "npm run build && npm run package:pack",
"package:pack": "zip -r artifact.zip dist/*",
"deploy": "npm run package && aws lambda update-function-code --function-name pdf --zip-file fileb://artifact.zip --region us-east-1",
"test": "mocha -r babel-register -r babel-polyfill --recursive test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dueyfinster/lambda-pdf.git"
},
"keywords": ["pdf", "aws", "lambda"],
"author": "Neil Grogan",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/dueyfinster/lambda-pdf/issues"
},
"homepage": "https://github.com/dueyfinster/lambda-pdf#readme",
"dependencies": {
"babel-runtime": "^6.11.6",
"busboy": "^0.2.14",
"parse-multipart": "^1.0.4",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.9.0",
"chai": "latest",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"mocha": "latest"
},
"babel": {
"presets": ["stage-0", "es2015"],
"plugins": [
"transform-runtime",
"transform-async-to-generator",
"transform-class-properties"
]
}
}