-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.95 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "libas2",
"alternateName": "node-libas2",
"version": "0.8.2",
"description": "Implementation of the AS2 protocol as presented in RFC 4130 and related RFCs",
"main": "dist/core.js",
"types": "dist/core.d.ts",
"files": [
"dist/**"
],
"scripts": {
"prepack": "gulp compile",
"postpack": "gulp clean:dist",
"test": "gulp mocha:coverage"
},
"keywords": [
"as2",
"RFC4130",
"as2 protocol",
"mdn",
"edi"
],
"author": "Aaron Huggins",
"repository": {
"type": "git",
"url": "https://github.com/ahuggins-nhs/node-libas2"
},
"homepage": "https://ahuggins-nhs.github.io/node-libas2/",
"license": "MIT",
"dependencies": {
"@nhs-llc/emailjs-mime-parser": "^2.1.0",
"@peculiar/webcrypto": "^1.1.3",
"asn1js": "^2.0.26",
"nodemailer": "^6.4.11",
"pkijs": "^2.1.90"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/gulp": "^4.0.6",
"@types/luxon": "^1.24.4",
"@types/mailparser": "^2.7.3",
"@types/mocha": "^8.0.3",
"@types/nock": "^11.1.0",
"@types/node": "^14.6.2",
"@types/node-forge": "^0.9.5",
"@types/nodemailer": "^6.4.0",
"@types/ping": "^0.2.0",
"@types/pkijs": "0.0.4",
"del-cli": "^3.0.1",
"dts-bundle-webpack": "^1.0.2",
"gulp": "^4.0.2",
"gulp-shell": "^0.8.0",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^6.0.1",
"luxon": "^1.25.0",
"mocha": "^8.1.3",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"ping": "^0.2.3",
"sinon": "^9.0.3",
"source-map-support": "^0.5.19",
"ts-loader": "^8.0.3",
"ts-mock-imports": "^1.3.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}