-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 984 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
40
{
"name": "expo-jwt",
"version": "1.8.0",
"description": "Generate and decode JWT inside of an React Native Expo app",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"author": "Blake Simpson <hi@blakesimpson.solutions>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blake-simpson/expo-jwt.git"
},
"keywords": [
"expo",
"jwt",
"react-native"
],
"files": [
"dist"
],
"dependencies": {
"crypto-js": "^4.2.0"
},
"scripts": {
"compile": "npx tsc",
"build": "rm -rf dist && npm run compile",
"prepublish": "npm run sanity && npm run build",
"sanity": "npm run compile && npm test",
"test": "npx jest",
"test:watch": "npx jest --watchAll",
"test:coverage": "npx jest --coverage"
},
"devDependencies": {
"@types/crypto-js": "^4.0.1",
"@types/jest": "^26.0.15",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^4.0.3"
}
}