-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
{
"name": "xrmcli",
"version": "0.1.2",
"description": "A suite of cli tools to support Xrm/D365/Dataverse development",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"build:watch": "npx tsc --watch",
"lint": "npx eslint src/**/*",
"format": "npx prettier src/**/*.ts --write"
},
"keywords": [
"xrm",
"dynamics-365",
"dynamics",
"d365",
"dataverse",
"powerapps",
"power",
"platform",
"power-platform",
"cli"
],
"author": "Oliver Flint <[email protected]>",
"license": "MIT",
"main": "./lib/index.js",
"bin": "./lib/index.js",
"engines": {
"node": "^12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/OliverFlint/xrmcli"
},
"homepage": "https://github.com/OliverFlint/xrmcli#readme",
"bugs": {
"url": "https://github.com/OliverFlint/xrmcli/issues"
},
"dependencies": {
"adal-node": "^0.2.2",
"commander": "^9.0.0",
"fs-extra": "^10.0.0",
"node-fetch": "^2.6.1",
"progress": "^2.0.3",
"unzipper": "^0.10.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.9.6",
"@types/node-fetch": "^2.5.8",
"@types/progress": "^2.0.3",
"@types/unzipper": "^0.10.4",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.2.1",
"typescript": "^4.2.2"
},
"files": [
"lib/**/*"
]
}