-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 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
{
"name": "microsoft-intune",
"version": "2.11.0",
"description": "sdk for Microsoft Intune",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "concurrently 'yarn clean' 'yarn test' 'yarn compile' 'yarn copy'",
"build:check": "tsc --noEmit",
"clean": "rimraf coverage dist tmp",
"commit": "cz",
"compile": "tsc -p tsconfig.build.json",
"copy": "pinst --disable && cpy package.json dist && cpy README.md dist && pinst --enable",
"generate-docs": "typedoc",
"lint": "eslint \"src/**/*.ts\" --fix",
"postinstall": "husky install",
"qa": "concurrently 'yarn lint' 'yarn test' 'yarn clean' 'yarn build:check'",
"semantic-release": "semantic-release",
"test": "jest"
},
"keywords": [],
"author": "Santese Smith",
"repository": {
"type": "git",
"url": "https://github.com/pliancy/intune-node"
},
"license": "MIT",
"dependencies": {
"@azure/storage-blob": "12.27.0",
"@microsoft/microsoft-graph-client": "3.0.7",
"@microsoft/microsoft-graph-types-beta": "0.43.0-preview",
"axios": "1.8.4",
"isomorphic-fetch": "3.0.0",
"qs": "6.14.0",
"tslib": "2.8.1"
},
"devDependencies": {
"@digitalroute/cz-conventional-changelog-for-jira": "8.0.1",
"@pliancy/eslint-config-ts": "1.1.1",
"@pliancy/semantic-release-config-npm": "2.2.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@types/isomorphic-fetch": "0.0.39",
"@types/jest": "29.5.14",
"@types/node": "22.14.0",
"@types/qs": "6.9.18",
"commitizen": "4.3.1",
"concurrently": "9.1.2",
"cpy-cli": "5.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"pinst": "3.0.0",
"rimraf": "6.0.1",
"semantic-release": "24.2.3",
"ts-jest": "29.3.1",
"ts-node": "10.9.2",
"typedoc": "0.28.1",
"typedoc-plugin-missing-exports": "4.0.0",
"typescript": "5.8.2"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false,
"jiraOptional": true
}
},
"volta": {
"node": "22.14.0",
"yarn": "1.22.22"
}
}