-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
63 lines (63 loc) · 1.99 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
{
"name": "dataverse-ify",
"version": "2.0.8",
"description": "Easily call the Microsoft Dataverse WebApi using SDK style types. Works with 'dataverse-gen' to create early bound classes.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"ci-test": "jest --runInBand --ci",
"unit-test": "jest unit-tests/",
"integration-test": "jest integration-tests/",
"browser-tests-build": "webpack --config webpack.config.js --watch",
"start-browser": "webpack --config webpack.config.js --watch",
"prepublish-test": "npm run ci-test",
"preversion": "npm run prepublish-test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm version patch",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"coverage": "jest --coverage"
},
"author": "Scott Durow",
"license": "MIT",
"dependencies": {
"@azure/msal-node": "^2.16.2",
"config": "^3.3.7",
"cryptr": "^6.0.3",
"fs": "^0.0.1-security",
"https-proxy-agent": "^5.0.1",
"node-fetch": "^2.6.7",
"os": "^0.1.2"
},
"devDependencies": {
"@microsoft/eslint-plugin-power-apps": "^0.2.2",
"@types/config": "^0.0.41",
"@types/cryptr": "^4.0.1",
"@types/jest": "^27.5.1",
"@types/node-fetch": "^2.6.1",
"@types/request": "^2.48.8",
"@types/xrm": "^9.0.58",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"dotenv": "^16.0.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"expect": "^28.1.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-mock": "^28.1.0",
"prettier": "^2.6.1",
"process": "^0.11.10",
"syswide-cas": "^5.3.0",
"ts-jest": "^28.0.3",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
}
}