Skip to content

Commit 5480714

Browse files
published 0.0.1
1 parent 86b3dd7 commit 5480714

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

.npmignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Specifies intentionally untracked files to ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
*~
5+
*.sw[mnpcod]
6+
*.log
7+
*.tmp
8+
*.tmp.*
9+
log.txt
10+
*.sublime-project
11+
*.sublime-workspace
12+
.vscode/
13+
npm-debug.log*
14+
15+
.idea/
16+
.sass-cache/
17+
.tmp/
18+
.versions/
19+
coverage/
20+
src/
21+
node_modules/
22+
tmp/
23+
temp/
24+
hooks/
25+
platforms/
26+
plugins/
27+
plugins/android.json
28+
plugins/ios.json
29+
www/
30+
$RECYCLE.BIN/
31+
32+
.DS_Store
33+
Thumbs.db
34+
UserInterfaceState.xcuserstate

package.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"name": "angular2-jwt-refresh",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "Refresh token support for angular2-jwt",
5-
"main": "src/angular2-jwt-refresh.ts",
5+
"main": "dist/angular2-jwt-refresh.js",
6+
"typings": "./dist/angular2-jwt-refresh.d.js",
7+
"types": "./dist/angular2-jwt-refresh.d.js",
68
"scripts": {
79
"prebuild": "npm run lint && npm test -- --single-run",
810
"build": "tsc --alwaysStrict -d --outDir dist --noUnusedLocals --noUnusedParameters --pretty --noEmitOnError",
@@ -12,13 +14,22 @@
1214
"prepublish": "npm run build"
1315
},
1416
"keywords": [
17+
"angular",
1518
"angular2",
1619
"jwt",
1720
"refresh",
1821
"token"
1922
],
2023
"author": "Leonardo Bazico",
2124
"license": "MIT",
25+
"repository": {
26+
"type": "git",
27+
"url": "git+https://github.com/leonardobazico/angular2-jwt-refresh.git"
28+
},
29+
"bugs": {
30+
"url": "https://github.com/leonardobazico/angular2-jwt-refresh/issues"
31+
},
32+
"homepage": "https://github.com/leonardobazico/angular2-jwt-refresh#readme",
2233
"dependencies": {},
2334
"devDependencies": {
2435
"@angular/common": "^2.4.6",

0 commit comments

Comments
 (0)