forked from BetimBeja/XrmTypesGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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
{
"name": "xrmtypesgen",
"version": "1.0.9",
"description": "A TypeScript Declaration Generator for Dynamics 365 Forms",
"keywords": [
"TyepScript",
"Declaration",
"Dynamics",
"D365",
"365",
"Dataverse",
"PowerPlatform",
"Power",
"Platform",
"PowerApps",
"WebResource"
],
"main": "dist/index.js",
"bin": "dist/index.js",
"engines": {
"node": "^12.0.0"
},
"scripts": {
"test": "node_modules/.bin/jest --coverage --maxWorkers=4",
"build": "node_modules/.bin/tsc && npm run template",
"template": "node_modules/.bin/copyfiles ./src/**/*.hbs ./dist/ --up 1",
"lint": "node_modules/.bin/eslint src/**/*",
"format": "node_modules/.bin/prettier src/**/*.ts --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OliverFlint/xrm-types-gen.git"
},
"author": "Oliver Flint",
"license": "MIT",
"bugs": {
"url": "https://github.com/OliverFlint/xrm-types-gen/issues"
},
"homepage": "https://github.com/OliverFlint/xrm-types-gen#readme",
"dependencies": {
"adal-node": "^0.2.2",
"commander": "^7.1.0",
"handlebars": "^4.7.7",
"node-fetch": "^2.6.1",
"node-localstorage": "^2.1.6",
"prettier": "^2.2.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^12.19.16",
"@types/node-fetch": "^2.5.8",
"@types/node-localstorage": "^1.3.0",
"@types/prettier": "^2.2.0",
"@types/sinon": "^9.0.10",
"@types/xrm": "^9.0.33",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"sinon": "^9.2.4",
"ts-jest": "^26.5.1",
"typescript": "^4.1.3"
},
"files": [
"dist/**/*"
]
}