forked from mobilehero-archive/titanium-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.34 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": "@titanium/jwt",
"version": "1.0.4",
"description": "JWT parser for Titanium native mobile",
"keywords": [
"oauth",
"jwt",
"jsonwebtoken",
"titanium",
"mobile",
"axway",
"turbo",
"ios",
"android",
"native",
"appcelerator",
"axway-amplify",
"amplify",
"api-builder",
"brenton-house"
],
"homepage": "https://brenton.house/saying-goodbye-to-axway-amplify-titanium-31a44f3671de",
"author": {
"name": "Brenton House",
"email": "[email protected]",
"url": "https://brenton.house"
},
"maintainers": [
{
"name": "Brenton House",
"email": "[email protected]",
"url": "https://brenton.house"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "github:brentonhouse/titanium-jwt"
},
"devDependencies": {
"@titanium/eslint-config": ">=0.0.18",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.6.4",
"eslint-plugin-promise": "^4.2.1"
},
"peerDependencies": {
"@titanium/polyfill": ">=0.0.9",
"@geek/logger": ">=0.0.1",
"moment": "^2.27.0",
"lodash": "^4.17.20"
},
"main": "./jwt.js",
"scripts": {
"prep": "npm install --ignore-scripts && npm run list",
"list": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepublishOnly": "git pull && bump insane",
"lint": "eslint . --fix",
"test": "npm run prep"
}
}