-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.68 KB
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
{
"name": "plugin-jsonapi",
"description": "A hapi plugin for a jsonapi style output according to our 'house rules'",
"version": "3.3.3",
"homepage": "https://github.com/holidayextras/plugin-jsonapi",
"author": {
"name": "Shortbreaks",
"email": "shortbreaksdev@holidayextras.com"
},
"repository": {
"type": "git",
"url": "git@github.com:holidayextras/plugin-jsonapi.git"
},
"license": "MIT",
"main": "index",
"engines": {
"node": ">=16"
},
"scripts": {
"ci": "echo 'nothing to do here'",
"lint": "standard",
"prerelease": "node_modules/deployment-helpers/nodeApps/preRelease.sh",
"pretest": "npm run prerelease",
"test:coverage": "NODE_PATH=${PWD} istanbul cover _mocha",
"test": "npm run lint && npm run test:coverage",
"deploy": "./scripts/deploy.sh"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coverage-percentage": "^0.0.2",
"deployment-helpers": "git+ssh://git@github.com:holidayextras/deployment-helpers.git",
"dirty-chai": "^1.2.2",
"@hapi/hapi": "^21.3.1",
"qs": "6.11.1",
"istanbul": "^1.1.0-alpha.1",
"joi": "17.9.2",
"mocha": "^5.2.0",
"sinon": "^1.17.4",
"sinon-as-promised": "^4.0.2",
"sinon-chai": "^2.8.0",
"standard": "^17.0.0"
},
"dependencies": {
"@hapi/boom": "10.0.1",
"lodash": "4.17.11",
"q": "1.5.1",
"qs": "6.5.1"
},
"peerDependencies": {
"@hapi/hapi": "^21.x.x"
},
"standard": {
"globals": [
"sinon",
"describe",
"before",
"beforeEach",
"afterEach",
"sandbox",
"it",
"expect"
]
},
"owner": "buying",
"platform": "custom",
"ci": "dockyard"
}