-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1019 Bytes
/
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
{
"name": "@larlon/verifier-and-challenge",
"version": "2.1.0",
"description": "Generates a verifier and a challenge according to rfc7636. ",
"main": "dist/index.js",
"scripts": {
"test": "jest --config=jest.config.json test/index.test.js",
"build": "parcel build index.js --no-source-maps --global verifierAndChallenge",
"preversion": "npm run build && npm run test",
"version": "git add -A dist",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lonnelars/verifier-and-challenge.git"
},
"keywords": [
"OIDC",
"PKCE",
"RFC7636"
],
"author": "Lars Lønne",
"license": "MIT",
"bugs": {
"url": "https://github.com/lonnelars/verifier-and-challenge/issues"
},
"homepage": "https://github.com/lonnelars/verifier-and-challenge#readme",
"dependencies": {},
"devDependencies": {
"jest": "24.9.0",
"jest-puppeteer": "4.3.0",
"parcel": "1.12.4",
"puppeteer": "1.20.0"
}
}