Skip to content

Commit 27d5fdf

Browse files
committed
Initial commit
0 parents  commit 27d5fdf

File tree

9 files changed

+2502
-0
lines changed

9 files changed

+2502
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/bower_components/
2+
/node_modules/
3+
/.pulp-cache/
4+
/output/
5+
/generated-docs/
6+
/.psc-package/
7+
/.psc*
8+
/.purs*
9+
/.psa*
10+
/dist/

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_js:
2+
- "node"
3+
language: node_js
4+
install:
5+
- npm i
6+
script:
7+
- npm test

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 Shinya Takahashi
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# purescript-simple-jwt
2+
3+
[![Latest release](http://img.shields.io/github/release/oreshinya/purescript-simple-jwt.svg)](https://github.com/oreshinya/purescript-simple-jwt/releases)
4+
5+
Simple [JWT(JSON Web Token)](http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html) encoder and decoder for PureScript.
6+
7+
## Documentation
8+
9+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-simple-jwt).
10+
11+
## LICENSE
12+
13+
MIT

bower.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "purescript-simple-jwt",
3+
"license": "MIT",
4+
"homepage": "https://github.com/oreshinya/purescript-simple-jwt",
5+
"authors": [
6+
"Shinya Takahashi <[email protected]>"
7+
],
8+
"description": "Simple JWT encoder and decoder for PureScript",
9+
"keywords": [
10+
"purescript",
11+
"jwt"
12+
],
13+
"repository": {
14+
"type": "git",
15+
"url": "git://github.com/oreshinya/purescript-simple-jwt.git"
16+
},
17+
"moduleType": [
18+
"node"
19+
],
20+
"ignore": [
21+
"**/.*",
22+
"node_modules",
23+
"bower_components",
24+
"output"
25+
],
26+
"dependencies": {
27+
"purescript-crypto": "^2.0.0",
28+
"purescript-simple-json": "^5.1.0",
29+
"purescript-strings": "^4.0.1"
30+
},
31+
"devDependencies": {
32+
"purescript-test-unit": "^15.0.0"
33+
}
34+
}

0 commit comments

Comments
 (0)