forked from koltyakov/pnp-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "pnp-upload",
"description": "SharePoint large files uploader using PnPjs",
"version": "2.0.1",
"main": "./dist/index.js",
"typings": "./dist/index",
"scripts": {
"build": "npm run clean && npm run lint && tsc -p .",
"clean": "rimraf ./dist",
"lint": "tsc --noEmit && eslint \"*/**/*.{js,ts}\" --quiet --fix",
"test": "ts-node ./test/manual/upload.ts",
"test:m": "mocha --config ./test/.mocharc.json || ECHO.",
"test:ci": "mocha --config ./test/.mocharc.json --ci || ECHO."
},
"keywords": [
"sharepoint",
"rest",
"pnp",
"upload"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koltyakov/pnp-upload.git"
},
"author": "Andrew Koltyakov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koltyakov/pnp-upload/issues"
},
"homepage": "https://github.com/koltyakov/pnp-upload#readme",
"dependencies": {
"@pnp/nodejs": "^2.10.0",
"@pnp/nodejs-commonjs": "^2.10.0",
"@pnp/pnpjs-commonjs": "^2.10.0",
"filesize": "^8.0.3",
"node-sp-auth-config": "^3.0.1",
"pnp-auth": "^2.0.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.1",
"@types/progress": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"dotenv": "^10.0.0",
"eslint": "^8.0.1",
"mocha": "^9.1.3",
"progress": "^2.0.3",
"rimraf": "^3.0.2",
"ts-node": "^10.3.0",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
}
}