-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "@rduk/data",
"version": "0.7.2",
"description": "Data layer abstraction",
"engines": {
"node": ">=8.11.1"
},
"main": "lib/index.js",
"scripts": {
"pretest": "standard --fix && cp ./spec/resources/*yml .",
"test": "RDUK_LOG_LEVEL=info istanbul cover jasmine --report cobertura",
"posttest": "rm ./*yml",
"report": "istanbul report",
"coveralls": "npm run report && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/rd-uk/rduk-data"
},
"bugs": {
"url": "https://github.com/rd-uk/rduk-data/issues"
},
"homepage": "https://github.com/rd-uk/rduk-data#readme",
"keywords": [
"rduk",
"data",
"provider"
],
"author": "RDUK <[email protected]>",
"license": "MIT",
"dependencies": {
"@rduk/expression": "^0.5.2",
"mixwith": "^0.1.1"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@rduk/configuration": "^2.2.3",
"@rduk/errors": "^1.3.1",
"@rduk/logger": "^1.0.3",
"@rduk/provider": "^3.1.2",
"coveralls": "3.0.3",
"dotenv": "6.1.0",
"husky": "^1.3.1",
"istanbul": "0.4.5",
"jasmine": "3.2.0",
"standard": "12.0.0"
},
"peerDependencies": {
"@rduk/configuration": "^2.2.3",
"@rduk/errors": "^1.3.1",
"@rduk/logger": "^1.0.3",
"@rduk/provider": "^3.1.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}