This repository was archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "c2w-lambda-athlete-reports",
"version": "1.0.0",
"description": "Cycle2work reports function",
"main": "bundle/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cycle2work/c2w-lambda-athlete-reports"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"bluebird": "^3.5.1",
"bunyan": "^1.8.12",
"dotenv": "^2.0.0",
"lodash.uniqby": "^4.7.0",
"mongodb": "^2.2.33"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^4.3.4",
"codecov": "^1.0.1",
"eslint": "^7.30.0",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0"
},
"scripts": {
"build": "babel src -d bundle",
"codecov": "NODE_ENV=test NODE_PATH=src nyc mocha report --reporter=text-lcov > coverage.lcov --recursive && codecov",
"coverage": "NODE_ENV=test NODE_PATH=src nyc mocha --recursive",
"dev": "npm test -- --watch",
"lint": "eslint src test",
"test": "NODE_PATH=src NODE_ENV=test mocha --compilers js:babel-core/register --recursive"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"license": "Apache-2.0"
}