-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 903 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
{
"name": "@jeremyhamm/oauth2-credentials-generator",
"version": "1.0.1",
"description": "A small, cryptographically secure library, with zero dependencies, for generating client_id and client_secret for your oauth2 application",
"main": "app.js",
"scripts": {
"start": "node src/app.js",
"test": "mocha"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jeremyhamm/oauth2-credentials-generator.git"
},
"keywords": [
"oauth2",
"credentials",
"client_id",
"client_secret"
],
"author": "Jeremy Hamm",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremyhamm/oauth2-credentials-generator/issues"
},
"homepage": "https://github.com/jeremyhamm/oauth2-credentials-generator#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^10.2.0",
"pre-commit": "^1.2.2"
}
}