-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 978 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 978 Bytes
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
{
"name": "lambda-pipeline",
"version": "1.0.0",
"description": "Blueprint for creating a lambda function with CI/CD",
"main": "index.js",
"scripts": {
"build": "webpack",
"test": "jasmine-node src/"
},
"repository": {
"type": "git",
"url": "git@github.topdanmark.local:Cloud9/lambda-pipeline.git"
},
"keywords": [
"lambda",
"CD",
"CI",
"pipeline"
],
"publishConfig": {
"registry": "http://artifactory.topdanmark.local/artifactory/api/npm/npm-local"
},
"author": "Flemming Behrend",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/jasmine": "^2.5.53",
"@types/lodash": "^4.14.70",
"@types/node": "^8.0.14",
"generate-json-webpack-plugin": "^0.2.1",
"jasmine": "^2.6.0",
"jasmine-node": "^1.14.5",
"json-loader": "^0.5.4",
"uglifyjs-webpack-plugin": "^1.0.0-beta.1",
"webpack": "^3.3.0",
"zip-webpack-plugin": "^2.0.0"
}
}