-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.3 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
{
"name": "smash-js-serverless",
"version": "14.0.0",
"description": "Javascript lambda framework",
"main": "smash.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Noxs/SmashJsServerless.git"
},
"keywords": [
"serverless",
"js"
],
"author": "Smash & Co",
"license": "MIT",
"bugs": {
"url": "https://github.com/Noxs/SmashJsServerless/issues"
},
"homepage": "https://github.com/Noxs/SmashJsServerless#readme",
"devDependencies": {
"codecov": "^3.7.2",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.21.0",
"jest": "^24.8.0",
"jest-extended": "^0.11.5"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
],
"testPathIgnorePatterns": [
"^/controller/",
"^/database/",
"^/helper/",
"^/util/",
"^/api/"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"lib/**/*.js",
"smash.js"
]
},
"dependencies": {
"accepts": "^1.3.7",
"aws4": "^1.10.1",
"content-type": "^1.0.4",
"dynamodb-data-types": "^3.0.1",
"fast-xml-parser": "^3.17.4",
"glob": "^7.1.6",
"request": "^2.88.2"
}
}