This repository has been archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.34 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "pharmacy-data-etl",
"version": "0.8.2",
"description": "ETL to extract data from Syndication/Organisations and store as JSON",
"main": "app.js",
"scripts": {
"coverage-check": "istanbul check-coverage --config .istanbul.yml",
"coverage-generate": "yarn istanbul cover -- _mocha -- --recursive test",
"coverage-upload-coveralls": "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 .",
"postrewrite": "yarn git-hook",
"precommit": "yarn git-hook",
"prepush": "yarn git-hook",
"start": "node schedule.js",
"test": "NODE_ENV=test mocha --recursive test",
"test-ci": "yarn lint && yarn coverage-generate && yarn coverage-check && yarn coverage-upload-coveralls",
"test-integration": "NODE_ENV=test mocha --recursive test/integration",
"test-unit": "NODE_ENV=test mocha --recursive test/unit",
"test-watch": "yarn test --watch --reporter min",
"test-watch-integration": "yarn test-integration --watch --reporter min",
"test-watch-unit": "yarn test-unit --watch --reporter min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhsuk/pharmacy-data-etl.git"
},
"keywords": [
"Pharmacy",
"JSON",
"Organisation",
"Syndication"
],
"author": "Mark Harrop",
"license": "MIT",
"bugs": {
"url": "https://github.com/nhsuk/pharmacy-data-etl/issues"
},
"homepage": "https://github.com/nhsuk/pharmacy-data-etl#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.15.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-watch": "^3.1.2",
"husky": "^0.14.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.0.0",
"nock": "^9.0.14",
"nodemon": "^1.11.0"
},
"dependencies": {
"azure-data-service": "^0.3.0",
"etl-toolkit": "^0.2.0",
"google-libphonenumber": "^3.0.3",
"moment": "^2.20.1",
"nhsuk-bunyan-logger": "^1.4.1",
"node-schedule": "^1.2.5",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"require-environment-variables": "^1.1.2",
"xml2js": "^0.4.19"
}
}