-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "serverlessSg",
"version": "1.0.0",
"description": "Gives the number of attendies",
"author": "ServerlessSg",
"private": true,
"scripts": {
"sls:build": "./scripts/sls-build.sh",
"test:watch": "./node_modules/jest/bin/jest.js test/unit/* --watch",
"test": "./node_modules/jest/bin/jest.js test/unit/*"
},
"repository": {
"type": "git",
"url": "git://github.com/"
},
"dependencies": {
"aws-sdk": "^2.43.0",
"fs-promise": "^1.0.0",
"raven": "^2.0.2"
},
"devDependencies": {
"aws-sdk": "^2.43.0",
"aws-sdk-mock": "^1.5.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.0.1",
"fs-extra": "^3.0.1",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"lambda-tester": "^2.6.1",
"nock": "^9.0.2",
"nock-exec": "^0.1.0",
"serverless": "^1.16.1",
"serverless-plugin-diff": "^1.3.0",
"tmp": "^0.0.31"
},
"jest": {
"bail": true,
"collectCoverage": true,
"collectCoverageFrom": [
"functions/**",
"lib/**",
"!test/lib/**"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"setupTestFrameworkScriptFile": "./test/support/setup.js",
"roots": [
"test/unit"
]
}
}