-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "ecotricity-meter-reads-service",
"version": "1.0.0",
"description": "Ecotricity demo API for accepting and presenting customer meter readings",
"main": "index.js",
"scripts": {
"test": "mocha --recursive",
"test:all": "mocha --recursive --forbidOnly",
"test-coverage": "nyc npm run test:all",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"post-mock-data": "node ./src/util/helpers/postMockData.js",
"cloc": "cloc --exclude-list-file=.clocignore .",
"local": "now dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mishabruml/ecotricity-meter-reads-service.git"
},
"keywords": [
"ecotricity"
],
"author": "Misha Bruml",
"license": "ISC",
"bugs": {
"url": "https://github.com/mishabruml/ecotricity-meter-reads-service/issues"
},
"homepage": "https://github.com/mishabruml/ecotricity-meter-reads-service#readme",
"dependencies": {
"ajv": "^6.10.2",
"mongoose": "^5.7.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-shallow-deep-equal": "^1.4.6",
"chance": "^1.0.18",
"cloc": "^2.5.0",
"codecov": "^3.7.1",
"dotenv": "^8.1.0",
"mocha": "^6.2.0",
"now": "^16.1.2",
"nyc": "^14.1.1",
"sinon": "^7.4.1",
"sinon-mongoose": "^2.3.0",
"uuid": "^3.3.3"
}
}