add structure

This commit is contained in:
Philipp Kunz 2016-08-15 04:43:26 +02:00
parent 8d31d7b1c9
commit c7fc9a641e
10 changed files with 59 additions and 23 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
node_modules/
docs/
coverage/
.nogit/

0
dist/index.d.ts vendored Normal file
View File

1
dist/index.js vendored Normal file
View File

@ -0,0 +1 @@
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=

30
package.json Normal file
View File

@ -0,0 +1,30 @@
{
"name": "nodehash",
"version": "1.0.0",
"description": "simplifies access to node hash functions",
"main": "dist/index.js",
"typings":"dist/index.d.ts",
"scripts": {
"test": "(npmts)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pushrocks/nodehash.git"
},
"keywords": [
"hash",
"node",
"sha"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushrocks/nodehash/issues"
},
"homepage": "https://github.com/pushrocks/nodehash#readme",
"devDependencies": {
"npmts-g": "^5.2.8",
"should": "^11.1.0",
"typings-test": "^1.0.1"
}
}

0
test/test.d.ts vendored Normal file
View File

1
test/test.js Normal file
View File

@ -0,0 +1 @@
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbInRlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9

0
test/test.ts Normal file
View File

0
ts/index.ts Normal file
View File