This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.91 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
{
"name": "etl-toolkit",
"version": "0.2.0",
"description": "general components for managing the retrieval and processing of data",
"main": "etlToolkit.js",
"repository": "https://github.com/nhsuk/etl-toolkit",
"author": "mark <markharrop@yahoo.com>",
"license": "MIT",
"private": false,
"peer-dependencies": {
"async": "^2.6.0",
"nhsuk-bunyan-logger": "^1.9.0"
},
"dependencies": {
"async": "^2.6.0",
"nhsuk-bunyan-logger": "^1.9.0"
},
"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",
"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"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-nhsuk": "^0.12.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.12.0",
"eslint-watch": "^3.1.2",
"husky": "^0.14.3",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.0.0",
"nock": "^9.2.0",
"nodemon": "^1.17.0",
"snyk": "^1.70.0"
}
}