forked from CyrusBiotechnology/auth0-authorization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "@natgeosociety/auth0-authorization",
"version": "1.1.2",
"description": "Auth0 Authorization Extension API client library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"dependencies": {
"@types/jsonwebtoken": "8.3.0",
"@types/node-fetch": "2.1.4",
"jsonwebtoken": "8.4.0",
"node-fetch": "2.3.0"
},
"devDependencies": {
"@types/nock": "9.3.1",
"ava": "1.2.1",
"nock": "10.0.6",
"npm-run-all": "4.1.5",
"nyc": "13.3.0",
"proxyquire": "^2.1.0",
"ts-node": "7.0.1",
"typescript": "3.2.2"
},
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc -p tsconfig.build.json --outDir lib",
"build:watch": "tsc -p tsconfig.build.json --outDir lib -w",
"pretestbuild": "rm -rf test",
"testbuild": "tsc -p tsconfig.test.json --outDir test",
"testbuild:watch": "tsc -p tsconfig.test.json --outDir test -w",
"unit": "nyc ava test/**/*.spec.js",
"unit:watch": "ava test/**/*.spec.js -w",
"test": "run-s testbuild unit",
"test:watch": "run-p testbuild:watch unit:watch"
},
"repository": {
"type": "git",
"url": "https://github.com/natgeosociety/auth0-authorization"
},
"keywords": [
"auth0",
"authorization"
]
}