-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 867 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
36
37
38
{
"name": "validate-scope",
"version": "1.2.0",
"description": "Checks whether a subset is contained in a list of scopes. Uses code generation",
"main": "index.js",
"keywords": [
"scope",
"subset",
"oauth",
"jwt",
"validate",
"expression",
"boolean"
],
"scripts": {
"test": "standard && node test.js"
},
"files": [
"index.js"
],
"author": "Marc Bachmann <[email protected]>",
"license": "ISC",
"devDependencies": {
"nanobench": "^2.0.0",
"standard": "^11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcbachmann/validate-scope.git"
},
"bugs": {
"url": "https://github.com/marcbachmann/validate-scope/issues"
},
"homepage": "https://github.com/marcbachmann/validate-scope#readme",
"dependencies": {
"boolean-expression": "^2.0.0"
}
}