-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "dataverse-auth",
"version": "2.0.7",
"description": "Performs auth against a Microsoft Dataverse environment. Stores the token for use in other NodeJS applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dataverse-auth": "dist/dataverse-auth.js"
},
"scripts": {
"build": "tsc",
"dist": "genversion --es6 --semi src/version.ts & tsc",
"prepublishOnly": "npm version patch",
"version": "genversion --es6 --semi --double src/version.ts && npm run build && git add src/version.ts",
"postversion": "git push && git push --tags",
"start": "tsc & node dist/dataverse-auth.js",
"electron": "tsc & electron .",
"genversion": "genversion",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"author": "",
"license": "MIT",
"dependencies": {
"@azure/msal-common": "^7.1.0",
"@azure/msal-node": "^1.11.0",
"@types/node-fetch": "^2.6.1",
"chalk": "^4.1.0",
"cryptr": "^6.0.3",
"electron": "^23.1.4",
"enquirer": "^2.3.6",
"eslint-plugin-sonarjs": "^0.13.0",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/cryptr": "^4.0.1",
"@types/jest": "^28.1.4",
"@types/minimist": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"genversion": "^3.1.1",
"jest": "^28.1.2",
"prettier": "^2.6.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3",
"typescript-eslint": "^0.0.1-alpha.0"
}
}