-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 970 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 970 Bytes
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
{
"name": "c2w-lambda-users",
"version": "1.0.0",
"description": "Cycle2work users function",
"main": "bundle/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cycle2work/c2w-lambda-users"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"bluebird": "^3.5.1",
"bunyan": "^1.8.14",
"mongodb": "^3.5.9",
"strava-v3": "^2.0.5"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"codecov": "^3.8.2",
"eslint": "^7.30.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"nock": "^13.1.1"
},
"scripts": {
"build": "babel src -d bundle",
"codecov": "codecov",
"coverage": "yarn test --coverage",
"dev": "jest --watch",
"lint": "eslint src",
"test": "jest"
},
"license": "Apache-2.0"
}