forked from s-KaiNet/node-sp-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 KB
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
{
"version": "1.2.0",
"name": "node-sp-auth",
"author": "Sergei Sergeev <sergeev.srg@gmail.com>",
"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"
],
"scripts": {
"build": "npm install && gulp tsc",
"dev": "gulp live-dev",
"test-int": "gulp test-int"
},
"repository": {
"type": "git",
"url": "git clone https://github.com/s-KaiNet/node-sp-auth.git"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"chai": "^3.5.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-debug": "^2.1.2",
"gulp-load-plugins": "^1.3.0",
"gulp-mocha": "^3.0.1",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-tslint": "^6.1.2",
"gulp-typescript": "^3.0.1",
"merge-stream": "^1.0.0",
"run-sequence": "^1.2.2",
"tslint": "^3.15.1",
"typescript": "^2.0.3",
"yargs": "^5.0.0"
},
"dependencies": {
"@types/bluebird": "^3.0.35",
"@types/cookie": "^0.1.29",
"@types/core-js": "^0.9.34",
"@types/jsonwebtoken": "^7.1.33",
"@types/lodash": "^4.14.37",
"@types/node": "^6.0.45",
"@types/request": "0.0.31",
"@types/request-promise": "^3.0.32",
"bluebird": "^3.4.6",
"cookie": "^0.3.1",
"httpntlm": "^1.6.1",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.16.2",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"xmldoc": "^0.5.1"
}
}