-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1003 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": "serverless-beyond",
"version": "1.0.0",
"description": "Framework built over Serverless Framework, That makes Serverless Development and Creating Micro services even easier With an easy CLI and optimized architecture",
"scripts": {
"test": "export STAGE=test && mocha src/test/**/*.test.js --recursive --slow 0 --exit",
"start": "serverless offline start",
"dev": "serverless offline start -l --port 4000",
"lint-check": "standard",
"lint": "standard --fix"
},
"standard": {
"ignore": [
"**/test/unit", "**/test/integration"
]
},
"bin": {
"ngen": "bin/Maker.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"minimist": "^1.2.0",
"mocha": "^6.2.2",
"serverless": "^1.47.0",
"serverless-offline": "^5.7.3",
"shelljs": "^0.8.3",
"sinon": "^7.5.0",
"standard": "^12.0.1",
"yaml": "^1.7.2"
},
"dependencies": {
"dynamoose": "^1.11.1",
"uuid": "^3.3.2"
}
}