-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 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
61
62
63
64
{
"name": "lamda-resize",
"version": "1.0.5",
"description": "Resize images and put them in a matching directory on the given bucket, suffixing them with the resized width",
"repository": "[email protected]:66pix/lambda-resize.git",
"main": "handler.js",
"scripts": {
"test": "lab --coverage --timeout 10000 --context-timeout 10000 -t 93 --verbose",
"lint": "eslint --ignore-path .gitignore .",
"nsp": "nsp check npm-shrinkwrap.json"
},
"author": "Michael Robinson <[email protected]>",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.7.0",
"bluebird": "^3.4.6",
"filename.js": "^1.0.17",
"nsp": "^2.6.2",
"ramda": "^0.22.1",
"raven": "^0.12.1",
"sharp": "0.16.2"
},
"devDependencies": {
"code": "^4.0.0",
"coverage-average": "^1.0.4",
"eslint": "^3.10.0",
"lab": "^11.2.1",
"node-lambda": "0.8.11",
"sinon": "^1.17.6"
},
"lambci": {
"docker": {
"cluster": "lambci-ecs-Cluster-1L3R71YGHV605",
"task": "lambci-ecs-BuildTask-1O10LW56SQ09B:1"
},
"build": false,
"branches": {
"master": {
"build": true,
"notifications": {
"slack": {
"channel": "#ci"
}
}
},
"develop": {
"build": true,
"notifications": {
"slack": {
"channel": "#ci"
}
}
},
"/feature/.*/": {
"build": true,
"notifications": {
"slack": {
"channel": "#staging-ci"
}
}
}
}
}
}