This repository was archived by the owner on Mar 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "@ausgaben/backend-serverless",
"version": "1.0.0",
"description": "",
"main": "handler.js",
"scripts": {
"test": "API_ENDPOINT=https://api.example.com jest -i",
"test:coverage": "API_ENDPOINT=https://api.example.com jest -i --forceExit --coverage",
"test:coverage-travis": "npm run test:coverage && codeclimate-test-reporter < ./coverage/lcov.info && rm -rf ./coverage",
"lint:fix": "standard --fix",
"lint": "standard"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-angular": "^7.1.2",
"aws-sdk": "^2.363.0",
"chalk": "^2.4.1",
"codeclimate-test-reporter": "^0.5.1",
"dinossauro": "0.0.7",
"gherkin": "5.1.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"jsonata": "^1.5.4",
"jsonwebtoken": "^8.4.0",
"redux": "^4.0.1",
"serverless": "^1.33.2",
"standard": "^12.0.1",
"toposort": "^2.0.2"
},
"dependencies": {
"@ausgaben/models": "^3.0.2",
"@rheactorjs/event-store-dynamodb": "^2.4.1",
"@rheactorjs/models": "^4.0.1",
"bluebird": "^3.5.3",
"joi": "^14.3.0",
"tcomb": "^3.2.29",
"uuid": "^3.3.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "npm run lint"
}
},
"engines": {
"node": ">=8.0.0"
}
}