-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.32 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
{
"name": "@benjaminnoufel/node-oauth2-client",
"version": "0.3.0",
"description": "Use a node oauth2 client on javascript or typescript.",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": {
"name": "Benjamin Noufel",
"url": "https://github.com/benjaminnoufel"
},
"bugs": {
"url": "https://github.com/benjaminnoufel/node-oauth2-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/benjaminnoufel/node-oauth2-client.git"
},
"homepage": "https://github.com/benjaminnoufel/node-oauth2-client#readme",
"keywords": [
"javascript",
"typescript",
"oauth2",
"node",
"node-oauth2",
"node oauth2",
"node oauth2 client"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"test": "jest",
"lint": "eslint --ext .ts,.js,.json ."
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-private-methods": "^7.12.13",
"@babel/plugin-proposal-private-property-in-object": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-stage-0": "^7.8.3",
"@babel/preset-stage-1": "^7.8.3",
"@benjaminnoufel/eslint-config-javascript": "^0.1.3",
"@benjaminnoufel/eslint-config-typescript": "^0.1.2",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-typescript": "^8.1.1",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-json": "^2.1.2",
"jest": "^26.6.3",
"rollup": "^2.38.5",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.0",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1"
}
}