This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
forked from s-KaiNet/node-sp-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.32 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
86
87
88
{
"version": "2.4.1",
"name": "node-sp-auth",
"author": "Sergei Sergeev <[email protected]>",
"description": "Unattended SharePoint http authentication with nodejs",
"main": "./lib/src/index.js",
"typings": "./lib/src/index",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"sharepoint",
"authentication",
"nodejs",
"saml",
"oauth",
"adfs"
],
"bugs": {
"url": "https://github.com/s-KaiNet/node-sp-auth/issues"
},
"homepage": "https://github.com/s-KaiNet/node-sp-auth",
"scripts": {
"build": "npm run tslint && 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",
"tslint": "tslint --project tsconfig.json",
"prepublish": "rimraf -- lib && npm run build",
"prepublishOnly": "rimraf -- lib && npm run build",
"test:dev": "mocha ./test/integration/tests.ts --watch --watch-extensions ts",
"test:integration": "nyc --report-dir coverage/integration mocha ./test/integration/tests.ts"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text-summary"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git://github.com/s-KaiNet/node-sp-auth.git"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"chai": "^3.5.0",
"cpy-cli": "^1.0.1",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"rimraf": "^2.6.1",
"source-map-support": "^0.4.15",
"ts-node": "^3.1.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.4.0"
},
"dependencies": {
"@types/bluebird": "^3.5.8",
"@types/cookie": "^0.1.29",
"@types/core-js": "^0.9.34",
"@types/jsonwebtoken": "^7.2.3",
"@types/lodash": "^4.14.69",
"@types/node": "^6.0.45",
"@types/request": "^2.47.0",
"@types/request-promise": "^4.1.41",
"bluebird": "^3.4.6",
"cookie": "^0.3.1",
"cpass": "^2.0.0",
"httpntlm": "^1.6.1",
"jsonwebtoken": "^7.4.3",
"lodash": "^4.17.4",
"node-sp-auth-config": "^2.0.2",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"xmldoc": "^0.5.1"
}
}