forked from pnp/pnpjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.02 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
{
"name": "@pnp/monorepo",
"private": true,
"type": "module",
"version": "3.2.0",
"description": "A JavaScript library for SharePoint & Graph development.",
"devDependencies": {
"@azure/msal-node": "1.8.0",
"@microsoft/microsoft-graph-types": "2.18.0",
"@pnp/buildsystem": "3.0.2",
"@types/chai": "4.3.0",
"@types/chai-as-promised": "7.1.5",
"@types/core-js": "2.5.5",
"@types/findup-sync": "4.0.2",
"@types/gulp": "4.0.9",
"@types/mocha": "9.1.0",
"@types/node": "16.11.7",
"@types/webpack": "5.28.0",
"@types/yargs": "17.0.10",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"del-cli": "4.0.1",
"eslint": "7.32.0",
"findup-sync": "5.0.0",
"mocha": "9.2.2",
"msal": "1.4.16",
"node-abort-controller": "3.0.1",
"node-fetch": "3.2.3",
"prettyjson": "1.2.5",
"stacktrace-js": "2.0.2",
"string-replace-loader": "3.1.0",
"tslib": "2.1.0",
"typescript": "4.5.5",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1",
"yargs": "16.2.0"
},
"scripts": {
"build": "npm run pnp-buildsystem-init && pnpbuild -n build",
"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 build && pnpbuild -n package",
"pnp-buildsystem-init": "tsc -p tsconfig.buildsystem.json",
"pnp-publish-beta": "npm run clean && npm run package && pnpbuild -n publish-beta",
"pnp-publish-v3nightly": "npm run clean && npm run package && pnpbuild -n publish-v3nightly",
"serve": "tsc -p ./debug/serve/tsconfig.json && node ./build/server/debug/serve/plumbing/run.js",
"start": "npm run serve",
"test": "tsc -p ./test/tsconfig.json && mocha --verbose --logging",
"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]"
}
],
"bugs": {
"url": "https://github.com/pnp/pnpjs/issues"
},
"homepage": "https://github.com/pnp/pnpjs"
}