forked from SharePoint-NodeJS/pnp-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.06 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
{
"name": "pnp-auth",
"version": "2.0.0",
"description": "Provides additional authentication options for @pnp/pnpjs (aka PnPjs) library",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"build": "npm run lint && tsc -p .",
"prepublishOnly": "rimraf -- lib && npm run build",
"lint": "eslint -c .eslintrc.json --ext .ts src test",
"precommit": "npm run lint",
"test": "mocha ./test/integration.spec.ts",
"coverage": "nyc mocha ./test/integration.spec.ts"
},
"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+https://github.com/SharePoint-NodeJS/pnp-auth.git"
},
"author": "",
"contributors": [
"Sergei Sergeev <[email protected]>",
"Andrew Koltyakov <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SharePoint-NodeJS/pnp-auth/issues"
},
"homepage": "https://github.com/SharePoint-NodeJS/pnp-auth",
"peerDependencies": {
"@pnp/common-commonjs": "2.x",
"@pnp/logging-commonjs": "2.x",
"@pnp/odata-commonjs": "2.x",
"@pnp/sp-commonjs": "2.x"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"node-fetch": "^2.6.0",
"node-sp-auth": "^3.0.4",
"node-sp-auth-config": "^3.0.1"
}
}