-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.62 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.62 KB
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
65
66
67
{
"name": "aws-lambda-infra-functions",
"version": "1.1.0",
"description": "Set of AWS Lambda functions used to execute common system tasks",
"author": "Sprinklr",
"license": "ISC",
"scripts": {
"build": "serverless package && mv ./.serverless/aws-lambda-infra-functions.zip ./packages",
"debug": "NODE_PATH=./ serverless invoke local",
"coverage": "nyc yarn test",
"lint": "standard -v \"Domain/**/*.js\" \"Infra/**/*.js\" \"Features/**/*.js\"",
"test": "NODE_ENV=test NODE_PATH=./ mocha \"Domain/**/*.test.js\" \"Infra/**/*.test.js\" --colors --require Tests/support.js --reporter spec",
"test:watch": "yarn test --watch --reporter min"
},
"nyc": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100,
"check-coverage": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"node_modules/**/*",
"Infra/config/**/*.js"
]
},
"standard": {
"globals": [
"describe",
"context",
"it",
"after",
"afterEach",
"before",
"beforeEach"
]
},
"engines": {
"node": "8.10.0",
"npm": "5.6.0"
},
"dependencies": {
"aws-sdk": "^2.228.1",
"axios": "^0.18.0",
"cookie": "^0.3.1",
"dotenv": "^5.0.1",
"joi": "^13.2.0",
"speck-entity": "^0.2.0",
"winston": "2.4.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"faker": "^4.1.0",
"mocha": "^5.1.1",
"nyc": "11.7.1",
"rosie": "^2.0.1",
"serverless": "^1.26.1",
"sinon": "^4.5.0",
"standard": "^11.0.1",
"watch-cli": "^0.2.3"
}
}