-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
62
63
64
65
66
67
68
{
"name": "jwt-autorefresh",
"version": "0.2.4",
"description": "Factory to schedule and execute calls to refresh token endpoints in advance of token expiration.",
"main": "lib/index.js",
"files": [
"lib",
"src",
"doc"
],
"keywords": [
"jwt",
"refresh",
"token",
"openid",
"oauth",
"expiration",
"exp",
"keepalive",
"unauthorized"
],
"scripts": {
"clean": "rimraf lib doc",
"prebuild": "npm run clean",
"build": "babel src/lib -d lib --ignore __tests__,__mocks__",
"test": "jest",
"prerelease": "run-p build test",
"release": "npm version patch && npm publish",
"postrelease": "npm run release-gh-pages",
"prerelease-gh-pages": "npm run doc",
"release-gh-pages": "run-s gh-pages-subtree gh-pages-push gh-pages-delete",
"postrelease-gh-pages": "npm run clean && npm run git-save -- clean && git push -u origin master --follow-tags",
"predoc": "rimraf doc",
"doc": "esdoc -c ./esdoc.json && ncp CNAME doc/CNAME",
"postdoc": "npm run git-save -- doc",
"gh-pages-subtree": "git subtree split --prefix doc -b gh-pages",
"gh-pages-push": "git push -f origin gh-pages:gh-pages",
"gh-pages-delete": "git branch -D gh-pages",
"git-save": "git add -A && git commit -am "
},
"dependencies": {
"chai": "^3.5.0",
"bunyan": "^1.8.1",
"jwt-simple": "^0.5.0",
"npm-run-all": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-latest": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"esdoc": "^0.4.6",
"esdoc-es7-plugin": "0.0.3",
"jest": "^16.0.1",
"ncp": "^2.0.0",
"npm-run-all": "^2.1.1",
"rimraf": "^2.5.2"
},
"author": "Cole Chamberlain <[email protected]> (https://github.com/cchamberlain)",
"bugs": {
"url": "https://github.com/cchamberlain/jwt-autorefresh/issues"
},
"homepage": "http://jwt-autorefresh.js.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cchamberlain/jwt-autorefresh.git"
}
}