-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.18 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
{
"name": "@geek/jwt",
"version": "1.0.1",
"description": "JWT parser for JavaScript Node.js and Titanium native mobile",
"keywords": [
"oauth",
"jwt",
"jsonwebtoken",
"nodejs",
"titanium",
"mobile",
"axway",
"turbo",
"ios",
"android",
"native",
"appcelerator",
"brenton-house"
],
"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/geek-jwt"
},
"devDependencies": {
"@geek/eslint-config": "^0.0.17",
"eslint": "^7.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^35.4.3",
"eslint-plugin-promise": "^4.2.1"
},
"peerDependencies": {
"@geek/logger": "latest",
"moment": "latest",
"lodash": "latest"
},
"main": "./jwt.js",
"scripts": {
"prep": "npm install --ignore-scripts && npm run list",
"test": "npm run prep",
"list": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepublishOnly": "git pull && bump release",
"lint": "eslint . --fix"
}
}