-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.1 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.1 KB
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
{
"name": "@kwiz/common",
"version": "1.0.245",
"description": "KWIZ common utilities and helpers for M365 platform",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"watch": "npm-run-all --parallel watch:esm watch:cjs",
"watch-push": "yalc push --sig",
"build": "npm run reindex-project && npm run build:esm && npm run build:cjs",
"unit-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",
"clear-npm-cache": "npm cache clean --force",
"build-explain": "tsc --explainFiles",
"check-dependencies": "npx dpdm --no-tree --no-warning ./src/index.ts",
"yalc-link": "yalc publish",
"npm-link": "npm link",
"test": "npm run build:cjs && npm run build:test && mocha",
"___do_not_use_npm-publish": "npm publish --access public",
"reset-repo": "git fetch origin && git reset --hard origin/main",
"reindex-project": "cti create ./src -i _dependencies -w -b -n -o exports-index.ts && node fix-folder-imports.js",
"remove-all-index-files": "cd src && del /s /f /q exports-index.ts",
"watch:esm": "tsc-watch --project tsconfig.esm.json",
"watch:cjs": "tsc-watch --project tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:test": "tsc -p tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KWizCom/common.git"
},
"keywords": [
"KWIZ",
"SharePoint",
"SPO",
"Teams",
"Utilities",
"Helpers"
],
"author": "Shai Petel",
"contributors": [
"Shai Petel",
"Kevin Vieira"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/KWizCom/common/issues",
"email": "support@kwizcom.com"
},
"homepage": "https://github.com/KWizCom/common#readme",
"private": false,
"engines": {
"node": ">=16"
},
"packageManager": "npm@9.5.1",
"devDependencies": {
"@azure/msal-node": "^3.5.3",
"@types/dom-navigation": "^1.0.4",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.10",
"@types/node": "^24.1.0",
"create-ts-index": "^1.14.0",
"dotenv": "^16.5.0",
"fs-extra": "^11.2.0",
"jsdom": "^26.1.0",
"madge": "^6.1.0",
"mocha": "^11.2.2",
"npm-run-all": "^4.1.5",
"tsc-watch": "^7.2.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"xhr2": "^0.2.1"
},
"dependencies": {
"esbuild": "^0.19.12",
"get-tsconfig": "^4.7.2",
"resolve-pkg-maps": "^1.0.0"
}
}