-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "lk-lambda-deploy",
"version": "1.0.10",
"description": "Deploy lambda functions",
"main": "lib/lk-lambda-deploy.js",
"bin": {
"lk-lambda-deploy": "./lib/bin/lk-lambda-deploy.js"
},
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build"
},
"author": "Team Wattellina <wattellina@mondora.com>",
"repository": {
"type": "git",
"url": "https://github.com/lk-architecture/lk-lambda-deploy.git"
},
"bugs": {
"url": "https://github.com/lk-architecture/lk-lambda-deploy/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-plugin-rewire": "^1.0.0-rc-2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.7.0",
"eslint-plugin-babel": "^3.1.0",
"rimraf": "^2.5.2"
},
"dependencies": {
"bunyan": "^1.8.0",
"fs-extra": "^0.26.7",
"yargs": "^4.4.0"
}
}