-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "oniyi-ltpa",
"version": "2.1.0",
"description": "Tools to deal with Lightweight Third-Party Authentication tokens",
"main": "lib/index.js",
"scripts": {
"format": "prettier --write \"**/*.{js,json}\"",
"prelint": "npm run format",
"lint": "eslint .",
"test": "ava --verbose",
"test:watch": "npm test -- --watch",
"coverage": "nyc npm test && nyc report --reporter=html"
},
"devDependencies": {
"ava": "^2.4.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-ava": "^9.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^3.1.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2"
},
"dependencies": {
"big-integer": "^1.6.51",
"node-biginteger": "0.0.10",
"node-rsa": "^1.1.1",
"properties": "^1.2.1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/benkroeger/oniyi-ltpa.git"
},
"keywords": [
"ltpa",
"ltpa2",
"ibm",
"websphere",
"domino",
"rsa",
"pem"
],
"author": "Benjamin Kroeger <benjamin.kroeger@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benkroeger/oniyi-ltpa/issues"
},
"homepage": "https://github.com/benkroeger/oniyi-ltpa#readme",
"engines": {
"node": ">=8.11.1"
},
"files": [
"lib/"
],
"types": "lib/oniyi-ltpa.d.ts"
}