This repository has been archived by the owner on Nov 13, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "profiles-db",
"version": "0.1.0",
"description": "DB containing GP profile information",
"main": "app.js",
"scripts": {
"coverage-check": "istanbul check-coverage --config .istanbul.yml",
"coverage-generate": "yarn istanbul -- cover _mocha -- --recursive",
"coverage-upload": "cat ./coverage/lcov.info | coveralls",
"git-hook": "yarn lint && yarn coverage-generate && yarn coverage-check",
"istanbul": "NODE_ENV=test istanbul",
"lint": "eslint --ext .js,.json .",
"lint-watch": "esw --watch .",
"precommit": "yarn git-hook",
"prepush": "yarn git-hook && yarn snyk test",
"start": "node app.js",
"test": "NODE_ENV=test mocha --recursive test",
"test-ci": "yarn git-hook && yarn coverage-upload",
"test-watch": "yarn test -- --watch --reporter min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhsuk/profiles-db.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nhsuk/profiles-db/issues"
},
"homepage": "https://github.com/nhsuk/profiles-db#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-nhsuk": "^0.7.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-watch": "^3.1.2",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mocha": "^4.0.0",
"snyk": "^1.40.2"
},
"dependencies": {
"nhsuk-bunyan-logger": "^1.4.1",
"pretty-hrtime": "^1.0.3"
}
}