-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "auth0-authorization-extension-wrapper",
"version": "0.1.1",
"description": "Helper lib for Auth0 Authorization Extension with type support, using promises",
"main": "lib/index.js",
"keywords": [
"auth0",
"authorization",
"authorization-extension",
"api",
"typescript"
],
"directories": {
"test": "tests"
},
"typings": "lib/index.d.ts",
"typescript": {
"definition": "lib/index.d.ts"
},
"dependencies": {
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/mocha": "^2.2.44",
"@types/request-promise": "^4.1.39",
"chai": "^4.1.2",
"config-decorators": "^0.1.4"
},
"scripts": {
"build": "tsc -p src",
"build:test": "tsc -p test",
"test": "mocha test --timeout 15000",
"clear": "rm -Rf lib && rm -Rf test/*.js"
},
"author": {
"name": "Gábor IMRE",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/igabesz/auth0-authorization-extension-wrapper.git"
},
"bugs": {
"url": "https://github.com/igabesz/auth0-authorization-extension-wrapper/issues"
},
"homepage": "https://github.com/igabesz/auth0-authorization-extension-wrapper#readme"
}