-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.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
{
"name": "@buttercup/google-oauth2-client",
"version": "2.2.0",
"description": "Google OAuth2 authentication client",
"exports": "./dist/index.js",
"react-native": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "npm run build && npm run test:specs",
"test:specs": "nyc mocha ./test/specs/**/*.spec.js"
},
"files": [
"dist/**/*",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/buttercup/google-oauth2-client.git"
},
"keywords": [
"google",
"oauth2",
"client",
"auth",
"googleapis"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/buttercup/google-oauth2-client/issues"
},
"homepage": "https://github.com/buttercup/google-oauth2-client#readme",
"devDependencies": {
"@types/node": "^20.9.0",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@buttercup/fetch": "^0.2.1",
"eventemitter3": "^5.0.1",
"layerr": "^2.0.1",
"node-fetch": "^3.3.2",
"query-string": "^8.1.0"
}
}