-
Notifications
You must be signed in to change notification settings - Fork 304
/
package.json
98 lines (98 loc) · 3.46 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
89
90
91
92
93
94
95
96
97
98
{
"name": "@pnp/monorepo",
"private": true,
"type": "module",
"version": "4.6.0",
"description": "A JavaScript library for SharePoint & Graph development.",
"devDependencies": {
"@azure/identity": "4.4.1",
"@azure/msal-browser": "3.26.1",
"@azure/msal-node": "2.15.0",
"@microsoft/microsoft-graph-types": "2.40.0",
"@pnp/buildsystem": "^4.0.1",
"@pnp/logging": "^4.5.0",
"@types/chai": "4.3.19",
"@types/chai-as-promised": "7.1.8",
"@types/core-js": "2.5.8",
"@types/findup-sync": "4.0.5",
"@types/mocha": "10.0.9",
"@types/node": "18.11.9",
"@types/webpack": "5.28.5",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"chai": "4.3.10",
"chai-as-promised": "7.1.1",
"del-cli": "5.1.0",
"eslint": "8.57.0",
"findup-sync": "5.0.0",
"globby": "14.0.2",
"mocha": "10.7.3",
"node-fetch": "3.3.2",
"prettyjson": "1.2.5",
"string-replace-loader": "3.1.0",
"tslib": "2.7.0",
"typescript": "4.9.5",
"webpack": "5.95.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0",
"yargs": "17.7.2"
},
"scripts": {
"build": "npm run pnp-buildsystem-init && pnpbuild -n build",
"build-localresolver": "npx tsc -p tsconfig.localresolver.json",
"buildDebug": "npm run clean && npm run pnp-buildsystem-init && pnpbuild -n build-debug",
"clean": "del-cli \"./?(dist|site|build|buildsystem-config.js)\"",
"lint": "eslint ./packages ./test --ext .ts",
"just-publish": "npm run pnp-buildsystem-init && pnpbuild -n publish",
"package": "npm run pnp-buildsystem-init && pnpbuild -n package",
"pnp-buildsystem-init": "tsc -p tsconfig.buildsystem.json",
"pnp-publish-beta": "npm run pnp-buildsystem-init && pnpbuild -n publish-beta",
"pnp-publish-v3nightly": "npm run pnp-buildsystem-init && pnpbuild -n publish-v3nightly",
"pnp-publish-v4nightly": "npm run pnp-buildsystem-init && pnpbuild -n publish-v4nightly",
"serve": "tsc -p ./debug/serve/tsconfig.json && node ./build/server/debug/serve/plumbing/run.js",
"spfx": "node ./debug/spfx/pnpjs-local-debug-start.js",
"start": "npm run serve",
"test": "tsc -p ./test/tsconfig.json && mocha --verbose --logging error",
"test-build": "tsc -p ./test/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git://github.com/pnp/pnpjs"
},
"author": {
"name": "Microsoft and other contributors"
},
"license": "MIT",
"keywords": [
"sharepoint",
"office365",
"tools",
"spfx",
"sharepoint framework"
],
"engines": {
"node": ">=14.15.1"
},
"engineStrict": true,
"maintainers": [
{
"name": "patrick-rodgers",
"email": "[email protected]"
},
{
"name": "juliemturner",
"email": "[email protected]",
"url": "https://julieturner.net"
},
{
"name": "bcameron1231",
"email": "[email protected]",
"url": "https://beaucameron.net"
}
],
"bugs": {
"url": "https://github.com/pnp/pnpjs/issues"
},
"homepage": "https://github.com/pnp/pnpjs"
}