-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.42 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.42 KB
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": "allow2-service",
"version": "2.0.0-alpha.1",
"description": "Allow2 Parental Freedom Service SDK for Node.js — server-side integration for websites and web applications",
"main": "src/Allow2Client.js",
"exports": {
".": "./src/Allow2Client.js",
"./OAuth2Manager": "./src/OAuth2Manager.js",
"./PermissionChecker": "./src/PermissionChecker.js",
"./RequestManager": "./src/RequestManager.js",
"./VoiceCode": "./src/VoiceCode.js",
"./FeedbackManager": "./src/FeedbackManager.js",
"./HttpClient": "./src/HttpClient.js",
"./HttpResponse": "./src/HttpResponse.js",
"./TokenStorageInterface": "./src/TokenStorageInterface.js",
"./CacheInterface": "./src/CacheInterface.js",
"./models/CheckResult": "./src/models/CheckResult.js",
"./models/Activity": "./src/models/Activity.js",
"./models/DayType": "./src/models/DayType.js",
"./models/OAuthTokens": "./src/models/OAuthTokens.js",
"./models/RequestResult": "./src/models/RequestResult.js",
"./models/RequestType": "./src/models/RequestType.js",
"./models/FeedbackCategory": "./src/models/FeedbackCategory.js",
"./models/VoiceCodePair": "./src/models/VoiceCodePair.js",
"./exceptions/Allow2Error": "./src/exceptions/Allow2Error.js",
"./exceptions/ApiError": "./src/exceptions/ApiError.js",
"./exceptions/TokenExpiredError": "./src/exceptions/TokenExpiredError.js",
"./exceptions/UnpairedError": "./src/exceptions/UnpairedError.js",
"./storage/FileTokenStorage": "./src/storage/FileTokenStorage.js",
"./storage/MemoryTokenStorage": "./src/storage/MemoryTokenStorage.js",
"./cache/FileCache": "./src/cache/FileCache.js",
"./cache/MemoryCache": "./src/cache/MemoryCache.js"
},
"keywords": [
"allow2",
"parental freedom",
"parental",
"freedom",
"time limits",
"quotas",
"screen time",
"oauth2",
"service api"
],
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Allow2 Pty Ltd",
"email": "ceo@allow2.com",
"url": "https://www.allow2.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Allow2/Allow2node-service.git"
},
"bugs": {
"url": "https://github.com/Allow2/Allow2node-service/issues"
},
"homepage": "https://developer.allow2.com",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "node --test tests/**/*.test.js"
},
"files": [
"src/",
"LICENSE",
"README.md"
]
}