-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 1.15 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
{
"name": "lambda-shield-redirect",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node node_modules/gulp/bin/gulp.js single",
"build_watch": "node node_modules/gulp/bin/gulp.js default",
"run": "node build/index.js '{\"user\": \"dwyl\", \"repo\": \"dwyl.github.io\"}'",
"run2": "node build/index.js '{\"user\": \"dwyl\", \"repo\": \"aws-sdk-mock\"}'",
"run3": "node build/index.js '{\"user\": \"raptortech-js\", \"repo\": \"sloc-shields\"}'",
"publish_lambda": "node node_modules/gulp/bin/gulp.js single && zip -rq archive_newest.zip compiled_binaries build node_modules/del node_modules/sloc && cp archive_newest.zip zips/archive_$(date +%s).zip && aws --profile ncf lambda update-function-code --function-name shield-redirect3 --publish --zip-file fileb://archive_newest.zip"
},
"author": "",
"license": "MIT",
"dependencies": {
"del": "^2.2.1",
"sloc": "^0.1.10"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"sloc": "^0.1.10"
}
}