forked from auth0/react-native-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "react-native-auth0",
"version": "1.0.3",
"description": "React Native toolkit for Auth0 API",
"main": "index.js",
"scripts": {
"test": "jest",
"test:ci": "jest --coverage && codecov",
"jsdoc:generate": "jsdoc --configure .jsdoc.json --verbose",
"release:clean": "node scripts/cleanup.js",
"preversion": "node scripts/prepare.js",
"version": "node scripts/changelog.js && node scripts/jsdocs.js && node scripts/telemetry.js",
"postversion": "npm run release:clean"
},
"repository": "git+https://github.com/auth0/react-native-auth0.git",
"keywords": [
"react-native",
"react",
"auth0",
"jwt",
"authentication",
"lock",
"auth0-lock",
"login",
"sdk",
"api"
],
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/react-native-auth0/issues"
},
"homepage": "https://github.com/auth0/react-native-auth0#readme",
"devDependencies": {
"@types/jest": "^19.2.4",
"babel-jest": "^20.0.3",
"babel-preset-react-native": "^1.9.2",
"codecov": "^2.2.0",
"eslint": "^3.4.0",
"eslint-plugin-react": "^6.2.0",
"faker": "^3.1.0",
"fetch-mock": "^5.1.1",
"jest": "^20.0.4",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^3.0.0",
"minami": "^1.2.3",
"moment": "^2.18.1"
},
"jest": {
"coverageDirectory": "./coverage/"
},
"dependencies": {
"base-64": "^0.1.0",
"url": "^0.11.0"
}
}