-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "rating-service",
"version": "0.0.1",
"author": "Maheel De Silva",
"private": true,
"engines": {
"node": "^8.10.0",
"npm": "^5.6"
},
"scripts": {
"test": "env TZ='UTC' mocha --require babel-core/register --require babel-polyfill $(find . -name '*.spec.js' ! -ipath '*node_modules*') --recursive",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\"",
"clean": "rm -Rf build",
"coverage": "nyc --check-coverage --all --lines=80 --reporter=text --reporter=text-summary --functions=80 --branches=80 npm test",
"test:watch": "nodemon --exec \"npm run test\"",
"test:integration:offline": "newman run test/integration/rating-service.postman_collection.json -e test/integration/rating-service.localhost.postman_environment.json"
},
"devDependencies": {
"aws-sdk": "2.184.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-source-map-support": "^2.0.1",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-fuzzy": "^1.6.1",
"chai-spies": "^1.0.0",
"dirty-chai": "^2.0.1",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"isomorphic-fetch": "^2.2.1",
"istanbul": "^1.1.0-alpha.1",
"json-loader": "^0.5.7",
"mocha": "^5.2.0",
"mock-aws": "^1.2.3",
"newman": "^4.1.0",
"nodemon": "^1.18.4",
"nyc": "^13.1.0",
"serverless": "^1.26.1",
"serverless-offline": "^3.27.0",
"serverless-webpack": "^5.1.0",
"sinon": "^7.0.0",
"webpack": "^4.2.2",
"webpack-node-externals": "^1.6.2"
},
"dependencies": {
"ajv": "^6.5.4",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"jsonapi-serializer": "^3.6.1",
"mathjs": "^5.3.0",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"source-map-support": "^0.5.1",
"uuid": "^3.3.2"
},
"nyc": {
"include": [
"src/"
],
"require": [
"babel-register",
"babel-polyfill"
],
"exclude": [
"build",
"node_modules",
"webpack.config.js",
"handler"
]
}
}