-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "@ringcentral/easy-pkce",
"version": "1.0.1",
"license": "MIT",
"author": "RingCentral",
"description": "A small typescript lib for generating code verifier and code exchange for the proof key of code exchange.",
"main": "dist/main.js",
"bugs": {
"url": "https://github.com/ringcentral/easy-pkce/issues"
},
"homepage": "https://github.com/ringcentral/easy-pkce#readme",
"scripts": {
"test": "jest",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git@github.com:ringcentral/easy-pkce.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"buffer": "^6.0.3",
"randombytes": "^2.1.0",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/randombytes": "^2.0.0",
"@types/sha.js": "^2.4.0",
"jest": "^26.6.3",
"process": "0.11.10",
"ts-jest": "^26.5.4",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.9.0"
}
}