forked from CruGlobal/serverless-merge-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 846 Bytes
/
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
{
"name": "@cruglobal/serverless-merge-config",
"version": "1.1.0",
"description": "Serverless merge config adds the ability to merge configuration after serverless variables have been evaluated.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/CruGlobal/serverless-merge-config.git"
},
"engines": {
"node": ">= 6.10"
},
"scripts": {
"lint": "standard",
"test": "jest --coverage"
},
"author": "Brian Zoetewey <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.13"
},
"devDependencies": {
"coveralls": "^3.0.0",
"jest": "^22.4.2",
"standard": "^11.0.0"
},
"standard": {
"env": {
"node": true,
"jest": true
}
},
"jest": {
"testURL": "http://localhost/",
"testEnvironment": "node"
}
}