-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "notifications-node-client",
"version": "8.3.2",
"homepage": "https://docs.notifications.service.gov.uk/node.html",
"repository": {
"type": "git",
"url": "https://github.com/alphagov/notifications-node-client.git"
},
"description": "GOV.UK Notify Node.js client ",
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"client",
"types",
"tsconfig.json"
],
"scripts": {
"test": "mocha \"spec/**/*.js\" && npm run test:markdown:standard",
"test:markdown:standard": "standard-markdown DOCUMENTATION.md",
"integration": "mocha spec/integration/test.js",
"build:types": "tsc",
"check:types": "tsc --noEmit ./spec/types-test.ts"
},
"engines": {
"npm": ">=6.14.13",
"node": ">=14.17.3"
},
"author": "GDS developers",
"license": "MIT",
"dependencies": {
"axios": "^1.7.2",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/node": "^25.3.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"chai-bytes": "0.1.2",
"chai-json-schema": "1.5.1",
"jsonschema": "1.4.1",
"mocha": "10.6.0",
"mockdate": "3.0.5",
"nock": "9.2.6",
"optimist": "0.6.1",
"sinon": "^18.0.0",
"standard-markdown": "7.1.0",
"typescript": "^5.9.0"
}
}