-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
54
55
56
57
58
59
60
61
{
"name": "auth0-web",
"version": "2.3.0",
"description": "",
"main": "./dist/index.js",
"types": "./src/index.ts",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc --sourceMap true -p ./ --outDir dist/",
"coverage": "codecov",
"test": "nyc mocha -r jsdom-global -r mock-local-storage -r ts-node/register -r source-map-support/register tests/**/*.spec.ts"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"lcov",
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/auth0-web.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/digituz/auth0-web/issues"
},
"homepage": "https://github.com/digituz/auth0-web#readme",
"devDependencies": {
"@types/chai": "^4.0.7",
"@types/mocha": "^2.2.44",
"@types/sinon": "^4.0.0",
"chai": "^4.1.2",
"chai-spies": "^0.7.1",
"codecov": "^3.0.0",
"jsdom": "11.5.1",
"jsdom-global": "3.0.2",
"mocha": "^4.0.1",
"mock-local-storage": "^1.0.5",
"mockery": "^2.1.0",
"nyc": "^11.4.1",
"sinon": "^4.1.2",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0"
},
"dependencies": {
"@types/auth0-js": "^8.11.2",
"auth0-js": "^9.5.1",
"typescript": "^2.6.2"
}
}