forked from Clever/saml2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 987 Bytes
/
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
{
"name": "@flourish/saml2-js",
"version": "4.1.2",
"description": "SAML 2.0 node helpers",
"author": "Clever",
"license": "Apache-2.0",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "coffee --bare -c -o lib-js lib",
"test": "NODE_ENV=test mocha --require coffee-script/register test/*.coffee",
"test-cov": "NODE_ENV=test nyc --extension .coffee -r html -r text mocha --require coffee-script/register test/*.coffee",
"prepare": "npm run build"
},
"repository": "github:kiln/saml2",
"keywords": [
"saml",
"node"
],
"bugs": {
"url": "https://github.com/Clever/saml2/issues"
},
"devDependencies": {
"coffee-script": "^1.12.7",
"mocha": "^9.2.0",
"nyc": "^15.1.0"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.3",
"async": "^3.2.0",
"debug": "^4.3.0",
"underscore": "^1.8.0",
"xml-crypto": "^2.0.0",
"xml-encryption": "^3.0.2",
"xmlbuilder2": "^2.4.0"
}
}