-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "node-sp-auth-config",
"description": "Config options builder for node-sp-auth (SharePoint Authentication in Node.js)",
"version": "3.0.5",
"main": "./dist/index.js",
"typings": "./dist/index",
"scripts": {
"build": "rimraf ./dist && npm run lint && tsc -p .",
"test:lib": "ts-node ./test/init.ts",
"test:cli": "npm run build && node ./dist/cli init -p ./config/private.cli.json",
"lint": "tsc --noEmit && eslint \"*/**/*.ts\" --quiet --fix"
},
"bin": {
"sp-auth": "./dist/cli.js"
},
"keywords": [
"sharepoint",
"config",
"authentication",
"node-sp-auth",
"wizard"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koltyakov/node-sp-auth-config.git"
},
"author": "Andrew Koltyakov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koltyakov/node-sp-auth-config/issues"
},
"homepage": "https://github.com/koltyakov/node-sp-auth-config#readme",
"dependencies": {
"colors": "^1.4.0",
"commander": "^9.4.0",
"cpass": "^2.3.0",
"inquirer": "^8.2.4",
"mkdirp": "^1.0.4",
"node-sp-auth": "^3.0.7"
},
"devDependencies": {
"@pnp/pnpjs": "^2.0.6",
"@types/colors": "^1.2.1",
"@types/commander": "^2.12.2",
"@types/inquirer": "^8.2.2",
"@types/mkdirp": "^1.0.2",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.22.0",
"rimraf": "^3.0.2",
"sp-pnp-node": "^2.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"volta": {
"node": "16.16.0"
}
}