forked from s-KaiNet/node-sp-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.23 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
75
76
77
78
79
80
81
82
83
84
85
{
"version": "1.0.0",
"name": "@bcgov-ccbc/ccbc-node-sp-auth",
"author": "Rafael Solorzano, forked from (https://github.com/s-KaiNet)",
"description": "Unattended SharePoint http authentication with nodejs",
"main": "./lib/src/index.js",
"typings": "./lib/src/index",
"keywords": [
"sharepoint",
"authentication",
"nodejs",
"saml",
"oauth",
"adfs"
],
"scripts": {
"build": "tsc -p . && npm run copy",
"copy": "cpy src/auth/resolvers/ondemand/electron/*.* lib/src/auth/resolvers/ondemand/electron",
"dev": "npm run copy && tsc -p . --watch",
"lint": "eslint -c .eslintrc.json --ext .ts src test",
"prepublishOnly": "rimraf -- lib && npm run build",
"test:dev": "mocha ./test/integration/tests.ts --watch --watch-extensions ts",
"coverage": "nyc mocha ./test/integration/tests.ts",
"prepare": "npm run build"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"report-dir": "coverage/integration",
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"html",
"text-summary"
]
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"full-trace": true,
"bail": true
},
"repository": {
"type": "git",
"url": "git://github.com/bcgov/conn-ccbc-node-sp-auth.git"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/chai": "4.2.11",
"@types/mocha": "7.0.2",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"chai": "4.2.0",
"cpy-cli": "^4.1.0",
"eslint": "7.32.0",
"mocha": "^10.0.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"ts-node": "8.10.2",
"typescript": "3.9.5"
},
"dependencies": {
"@types/cookie": "0.4.0",
"@types/core-js": "2.5.3",
"@types/global-agent": "2.1.0",
"@types/jsonwebtoken": "8.5.0",
"@types/lodash.template": "4.5.0",
"@types/node": "14.0.13",
"cookie": "0.4.1",
"cpass": "2.3.0",
"global-agent": "2.1.12",
"got": "11.8.5",
"json5": "2.2.2",
"jsonwebtoken": "9.0.0",
"lodash.template": "4.5.0",
"xmldoc": "1.1.2"
}
}