-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
{
"name": "@kwiz/node",
"version": "1.0.23",
"description": "KWIZ utilities and helpers for node applications",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"watch": "tsc -watch",
"build": "npm run reindex-project && npm run test && tsc",
"build-explain": "tsc --explainFiles",
"check-dependencies": "madge --circular ./src",
"create-link": "npm link",
"test": "node --import tsx --test src",
"npm-v-patch": "npm version patch && git push origin main:main && git push --tags",
"npm-v-major": "npm version major && git push origin main:main && git push --tags",
"npm-publish": "npm publish --access public",
"reset-repo": "git fetch origin && git reset --hard origin/main",
"__update-kwiz-packages": "npm install @kwiz/common@latest",
"link-local-common": "npm link @kwiz/common",
"reindex-project": "cti create ./src -i _dependencies -w -b -n -o exports-index.ts && node fix-folder-imports.js",
"install-packages": "npm install azurite -g && npm ci",
"startDevStorage": "azurite -s -l"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KWizCom/node.git"
},
"keywords": [
"KWIZ",
"SharePoint",
"SPO",
"Teams",
"Utilities",
"Helpers",
"Node"
],
"author": "Shai Petel",
"contributors": [
"Shai Petel",
"Kevin Vieira"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/KWizCom/node/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/KWizCom/node#readme",
"private": false,
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/node": "^18.19.21",
"create-ts-index": "^1.14.0",
"fs-extra": "^11.2.0",
"madge": "^6.1.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@azure/data-tables": "^13.2.2",
"@azure/msal-node": "^2.6.4",
"@kwiz/common": "^1.0.97",
"axios": "^1.6.7",
"esbuild": "^0.19.12",
"get-tsconfig": "^4.7.2",
"resolve-pkg-maps": "^1.0.0"
}
}