forked from kylef/JSONWebToken.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSONWebToken.podspec.json
More file actions
42 lines (41 loc) · 1.07 KB
/
JSONWebToken.podspec.json
File metadata and controls
42 lines (41 loc) · 1.07 KB
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
{
"name": "JSONWebToken",
"version": "3.0.0",
"summary": "Swift library for JSON Web Tokens (JWT).",
"homepage": "https://github.com/kylef/JSONWebToken.swift",
"license": {
"type": "BSD",
"file": "LICENSE"
},
"authors": {
"Kyle Fuller": "kyle@fuller.li"
},
"source": {
"git": "https://github.com/kylef/JSONWebToken.swift.git",
"tag": "3.0.0"
},
"platforms": {
"ios": "8.0",
"osx": "10.9",
"tvos": "9.0",
"watchos": "2.0"
},
"requires_arc": true,
"module_name": "JWT",
"subspecs": [
{
"name": "JWT",
"source_files": ["Sources/JWT/*.swift"],
"dependencies": { "JSONWebToken/JWA": [] }
},
{
"name": "JWA",
"source_files": ["Sources/JWA/**/*.swift"],
"exclude_files": ["Sources/JWA/HMAC/HMACCryptoSwift.swift"]
}
],
"pod_target_xcconfig": {
"SWIFT_INCLUDE_PATHS": "$(PODS_ROOT)/JSONWebToken"
},
"preserve_paths": "CCommonCrypto/{shim.h,module.modulemap}"
}