add gitignore and package.json

This commit is contained in:
Philipp Kunz
2016-01-13 21:35:55 +01:00
parent 1699d259b4
commit 437e82c14d
10 changed files with 252 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "npmts",
"version": "0.0.0",
"description": "write npm modules with TypeScript",
"main": "index.js",
"scripts": {
"test": "npmts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pushrocks/npmts.git"
},
"keywords": [
"TypeScript",
"Declaration"
],
"author": "Lossless Digital UG (haftungsbeschraenkt)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushrocks/npmts/issues"
},
"homepage": "https://github.com/pushrocks/npmts#readme"
}