-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bbf5de6
commit 00d30b5
Showing
6 changed files
with
66 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
language: node_js | ||
cache: | ||
directories: | ||
- node_modules | ||
notifications: | ||
email: false | ||
node_js: | ||
- '7' | ||
- '6' | ||
- '4' | ||
before_script: | ||
- chmod 0777 ./node_modules/.bin/mocha | ||
- npm prune | ||
script: | ||
- npm run test:single | ||
after_success: | ||
- npm run semantic-release | ||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,41 @@ | ||
{ | ||
"name": "lazy-crypto", | ||
"version": "1.0.0", | ||
"version": "0.0.0-semantically-released", | ||
"description": "Cryptography utilities for safe password and token handling.", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"commit": "git-cz", | ||
"test": "mocha src/index.test.js -w", | ||
"test:single": "mocha src/index.test.js", | ||
"semantic-release": "semantic-release pre && npm publish && semantic-release post" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "node_modules/cz-conventional-changelog" | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/slysterous/lazy-crypto.git" | ||
"url": "https://github.com/slysterous/lazy-crypto.git" | ||
}, | ||
"keywords": [ | ||
"cryptography", | ||
"utiliti", | ||
"password", | ||
"token\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[y" | ||
"token" | ||
], | ||
"author": "Christos Petropoulos <chrispetropoulos91@gmail.com>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/slysterous/lazy-crypto/issues" | ||
}, | ||
"homepage": "https://github.com/slysterous/lazy-crypto#readme" | ||
"homepage": "https://github.com/slysterous/lazy-crypto#readme", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"chai": "4.1.2", | ||
"commitizen": "2.9.6", | ||
"cz-conventional-changelog": "2.0.0", | ||
"mocha": "3.5.0", | ||
"semantic-release": "^7.0.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
var expect =require('chai').expect; | ||
var LazyCrypto=require('./index.js'); | ||
|
||
describe("lazy-crypto",function(){ | ||
it('dummy test', function(){ | ||
expect(true).to.be.true; | ||
}); | ||
}); | ||
|
||
//LazyCrypto | ||
|
||
//generateEmailVerificationToken | ||
|
||
//validateSha512HashAndSalt | ||
|
||
//generateSha512HashAndSalt | ||
|
||
//generateSha512Hash | ||
|
||
//generateSalt |
Empty file.