add package.json

This commit is contained in:
Philipp Kunz 2016-05-02 07:32:38 +02:00
parent 7f175b91fc
commit 570aed282f
2 changed files with 27 additions and 1 deletions

View File

@ -1,9 +1,12 @@
# tsclass
tsclass spares you the hassle of writing classes again and again.
common classes for TypeScript.
tsclass contains the following classes:
* Date
* Invoice
* Time
> **note:** every class is its own npm module, so you can use them seperately.

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "tsclass",
"version": "1.0.0",
"description": "common classes for TypeScript",
"main": "dist/index.js",
"scripts": {
"test": "(npmts)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsclass/tsclass.git"
},
"keywords": [
"TypeScript",
"Classes"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsclass/tsclass/issues"
},
"homepage": "https://github.com/tsclass/tsclass#readme"
}