-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.26 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
{
"name": "@defra/hapi-gapi",
"version": "2.1.8",
"description": "hapi plugin to enable server-side google analytics platform integration",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest --runInBand --detectOpenHandles --forceExit",
"test-w": "jest . --watchAll"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:443/DEFRA/hapi-gapi"
},
"keywords": [
"hapi",
"google",
"analytics",
"GA4"
],
"author": "DEFRA",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^1.7.4",
"debug": "^4.3.1",
"node-fetch": "^2.6.6"
},
"devDependencies": {
"@hapi/hapi": "^20.1.5",
"@hapi/inert": "^6.0.3",
"@hapi/vision": "^6.1.0",
"husky": "^7.0.1",
"jest": "^29.5.0",
"lint-staged": "^11.1.1",
"nunjucks": "^3.2.4",
"prettier-standard": "^15.0.1",
"standard": "^14.3.4"
},
"prettier": {
"printWidth": 140
},
"standard": {
"env": {
"node": true
}
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*": [
"prettier-standard --lint"
]
}
}