forked from blake-simpson/expo-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1000 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
39
{
"name": "expo-jwt",
"version": "1.0.2",
"description": "Geberate and decode JWT inside of an React Native Expo app",
"main": "dist/index.js",
"author": "Blake Simpson <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kartenmacherei/expo-jwt.git"
},
"keywords": [
"expo",
"jwt",
"react-native"
],
"files": [
"dist"
],
"dependencies": {
"crypto-js": "^3.1.9-1"
},
"scripts": {
"build": "rm -rf dist && yarn babel ./lib --out-dir dist",
"prepublish": "yarn test && yarn build",
"test": "yarn jest",
"test:watch": "yarn jest --watchAll"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.2.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.2.0",
"regenerator-runtime": "^0.12.0"
}
}