From 437e82c14d76b83eea1eac0f8cd33390b827deef Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 13 Jan 2016 21:35:55 +0100 Subject: [PATCH] add gitignore and package.json --- .gitignore | 0 .idea/.name | 1 + .idea/dictionaries/philkunz.xml | 3 + .idea/encodings.xml | 6 ++ .idea/misc.xml | 44 +++++++++ .idea/modules.xml | 8 ++ .idea/npmts.iml | 8 ++ .idea/vcs.xml | 6 ++ .idea/workspace.xml | 153 ++++++++++++++++++++++++++++++++ package.json | 23 +++++ 10 files changed, 252 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.name create mode 100644 .idea/dictionaries/philkunz.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/npmts.iml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..1a18a1b --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +npmts \ No newline at end of file diff --git a/.idea/dictionaries/philkunz.xml b/.idea/dictionaries/philkunz.xml new file mode 100644 index 0000000..7bb178e --- /dev/null +++ b/.idea/dictionaries/philkunz.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..97626ba --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..3b46243 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + CoffeeScript + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..bae2f2d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/npmts.iml b/.idea/npmts.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/.idea/npmts.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..955e392 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1452709394127 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..18ee617 --- /dev/null +++ b/package.json @@ -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" +}