-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.55 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
{
"version": "1.0.4",
"name": "@intellihr/serverless-node-utils",
"description": "A serverless utils library",
"main": "lib/bundle.js",
"repository": "https://github.com/intellihr/serverless-node-utils",
"author": "IntelliHR<https://intellihr.com.au/>, Eric Chan <eric.chan@intellihr.com.au>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"webpack": "^3.5.5",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-node-externals": "^1.6.0"
},
"scripts": {
"build": "webpack --config webpack.config.js -d --progress",
"build:watch": "yarn build --watch --progress",
"lint": "standard --env jest --verbose | snazzy",
"lint:fix": "standard --env jest --fix"
},
"dependencies": {
"aws-sdk": "^2.180.0",
"clean-deep": "^3.0.2",
"http-status": "^1.0.1",
"jsonschema": "^1.2.2",
"mkdirp": "^0.5.1",
"moment": "^2.20.1",
"ramda": "^0.25.0",
"serializerr": "^1.0.3",
"swagger-tools": "^0.10.3",
"validator": "^9.2.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/lib/"
]
},
"resolutions": {
"qs": "6.5.3"
},
"overrides": {
"qs": "6.5.3"
},
"files": [
"lib"
]
}