-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.71 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
{
"author": "Josh Stout <joshstout@gmail.com>",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "1.7.9",
"jsonwebtoken": "9.0.2",
"tslib": "2.8.1"
},
"description": "",
"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",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "22.10.1",
"commitizen": "4.3.1",
"concurrently": "9.0.0",
"cpy-cli": "5.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-mock-axios": "4.8.0",
"open-cli": "8.0.0",
"pinst": "3.0.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
},
"keywords": [
"microsoft-partnercenter-node",
"microsoft",
"partner center",
"rest api",
"rest"
],
"license": "MIT",
"main": "dist/index.js",
"name": "microsoft-partnercenter",
"repository": {
"type": "git",
"url": "https://github.com/pliancy/microsoft-partnercenter-node"
},
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && yarn test && tsc -p tsconfig.build.json",
"build:check": "tsc --noEmit",
"clean": "rimraf coverage dist tmp",
"lint": "eslint \"src/**/*.ts\" --fix",
"postinstall": "husky",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"qa": "concurrently 'yarn lint' 'yarn test' 'yarn build:check'",
"semantic-release": "semantic-release",
"test": "jest",
"tsc": "tsc -p tsconfig.build.json"
},
"version": "6.1.1",
"volta": {
"node": "20.18.1",
"yarn": "1.22.22"
}
}