forked from AleksandrRogov/DynamicsWebApi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.76 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
{
"name": "dynamics-web-api",
"version": "1.7.5",
"description": "DynamicsWebApi is a Microsoft Dynamics CRM Web API helper library",
"keywords": [
"crm",
"cds",
"web-api",
"helper",
"d365",
"dynamics-crm",
"dynamics-365",
"common-data-service",
"dataverse",
"microsoft-dataverse",
"dynamics-crm-webapi",
"dynamics-crm-online"
],
"main": "lib/dynamics-web-api.js",
"types": "types/dynamics-web-api.d.ts",
"author": {
"name": "Aleksandr Rogov"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.1.6",
"Base64": "^1.1.0",
"chai": "^4.3.0",
"coveralls": "^3.1.0",
"gulp": "^4.0.2",
"mocha": "^8.3.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^11.9.1",
"nyc": "^15.1.0",
"rimraf": "^2.7.1",
"sinon": "^9.2.4",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0",
"webpack-strip-block": "^0.3.0"
},
"dependencies": {
"http-proxy-agent": "^4.0.1",
"https-proxy-agent": "^5.0.0"
},
"license": "MIT",
"scripts": {
"test": "mocha tests/*-tests.js",
"test-coverage": "rimraf coverage && nyc npm test && nyc report --reporter=lcov",
"build": "rimraf dist && rimraf coverage && webpack",
"release-patch": "npm version patch -m \"Release v%s\"",
"release-minor": "npm version minor -m \"Release v%s\"",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags",
"coveralls": "rimraf coverage && nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/AleksandrRogov/DynamicsWebApi.git"
},
"browser": {
"./lib/requests/http.js": "./lib/requests/xhr.js"
}
}