-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.57 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
96
97
98
99
100
101
102
{
"name": "@shko.online/componentframework-mock",
"version": "0.6.4",
"description": "Mocking library to help with testing PowerApps Component Framework Components",
"repository": "https://github.com/shko-online/ComponentFramework-Mock",
"author": "Shko Online <sales@shko.online> (https://shko.online)",
"license": "MIT",
"keywords": [
"componentframework",
"d365",
"pcf",
"mock",
"made-in-albania"
],
"bugs": {
"url": "https://github.com/shko-online/ComponentFramework-Mock/issues"
},
"homepage": "https://github.com/shko-online/ComponentFramework-Mock#readme",
"exports": {
".": {
"types": "./lib/ts4.2/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.mjs",
"types": "lib/ts4.2/index.d.ts",
"typesVersions": {
"<4.1": {
"lib/ts4.2/*": [
"lib/ts3.9/*"
]
},
"<3.8": {
"lib/ts4.2/*": [
"lib/ts3.4/*"
]
}
},
"dependencies": {
"@shko.online/dataverse-odata": "^0.1.3",
"@types/powerapps-component-framework": "^1.3.15",
"@types/sinon": "^17.0.3",
"@types/xlsx": "^0.0.35",
"alasql": "^4.5.2",
"sinon": "^19.0.2"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/babel-plugin": "^11.10.5",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@shko.online/build-npm-package": "^0.1.1",
"@storybook/react-docgen-typescript-plugin": "^1.0.1",
"@types/babel__core": "^7.1.20",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.17",
"@types/react": "16.8",
"@types/react-dom": "16.8",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"copyfiles": "^2.4.1",
"downlevel-dts": "^0.11.0",
"eslint": "^8.26.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json5": "^2.2.3",
"prettier": "^3.1.1",
"react": "16.8",
"react-dom": "16.8",
"react-test-renderer": "16.8",
"resize-observer-polyfill": "^1.5.1",
"ts-jest": "^29.1.1",
"tsd": "^0.30.4",
"typescript": "^4.7.4"
},
"scripts": {
"build": "npm run lint && build-npm-package",
"lint": "eslint",
"tsc": "tsc --project tsconfig.build.json",
"test": "npm run test:types && npm run test:jest",
"test:jest": "jest --coverage --maxWorkers=4",
"test:types": "tsd --typings src/ShkoOnline.d.ts --files ./__type-tests__/**/*.test-d.ts"
}
}