-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
95 lines (95 loc) · 3.08 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "dynamics-web-api",
"version": "2.1.7",
"description": "DynamicsWebApi is a Microsoft Dataverse Web API helper library",
"keywords": [
"dataverse",
"d365",
"dynamics-365",
"web-api",
"helper",
"crm",
"dynamics-crm",
"cds",
"common-data-service",
"microsoft-dataverse",
"dynamics-crm-webapi",
"dynamics-crm-online"
],
"main": "dist/cjs/dynamics-web-api.js",
"types": "./dist/dynamics-web-api.d.ts",
"exports": {
"types": "./dist/dynamics-web-api.d.ts",
"browser": {
"import": "./dist/browser/esm/dynamics-web-api.js",
"require": "./dist/browser/esm/dynamics-web-api.js",
"default": "./dist/dynamics-web-api.js"
},
"default": {
"import": "./dist/esm/dynamics-web-api.mjs",
"require": "./dist/cjs/dynamics-web-api.js"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.mjs",
"dist/**/*.d.ts"
],
"author": {
"name": "Aleksandr Rogov"
},
"devDependencies": {
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"@types/node": "^20.16.5",
"@types/sinon": "^10.0.20",
"@types/xrm": "^9.0.80",
"Base64": "^1.3.0",
"chai": "^4.5.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.21.5",
"glob": "^10.4.5",
"mocha": "^10.7.3",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^13.5.5",
"npm-run-all": "^4.1.5",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"sinon": "^15.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"http-proxy-agent": "^4.0.1",
"https-proxy-agent": "^5.0.1"
},
"license": "MIT",
"scripts": {
"test:clean": "rimraf lib coverage .nyc_output",
"test:build": "tsc",
"test:mocha": "mocha",
"test": "run-s test:*",
"coverage": "run-s coverage:clean test:build coverage:nyc",
"coverage:clean": "rimraf coverage",
"coverage:nyc": "nyc npm run test:mocha && nyc report --reporter=lcov",
"clean": "rimraf dist lib coverage .nyc_output",
"off-build:ts": "node ./utils/build.mjs",
"build:bundle": "node ./utils/bundle.mjs",
"build:types": "tsc --emitDeclarationOnly",
"build": "run-s clean build:*",
"postbuild": "run-s copyfiles add-banner",
"copyfiles": "copyfiles --flat ./lib/dynamics-web-api.d.ts ./dist/",
"add-banner": "node ./utils/add-banner.mjs",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.js\"",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags",
"release-patch": "npm version patch -m \"Release v%s\"",
"release-minor": "npm version minor -m \"Release v%s\""
},
"repository": {
"type": "git",
"url": "https://github.com/AleksandrRogov/DynamicsWebApi.git"
}
}