aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2017-12-28 14:05:57 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2017-12-28 14:05:57 +0200
commit7f953954a25071d55e61d33ec9f6641fe283de9c (patch)
tree1806b2c91ed19a6662b2d45e6f8d4d7b6eb5f3c1 /package.json
Initial commit
Diffstat (limited to 'package.json')
-rw-r--r--package.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..15359cc
--- /dev/null
+++ b/package.json
@@ -0,0 +1,25 @@
+{
+ "name": "create-riot-component",
+ "version": "1.0.0",
+ "description": "Create ES6 riot.js component",
+ "main": "dist/index.js",
+ "bin": {
+ "create-riot-component": "./dist/index.js"
+ },
+ "author": "Jan Tuomi",
+ "license": "MIT",
+ "scripts": {
+ "build": "tsc --outDir dist",
+ "prepublish": "npm run build"
+ },
+ "types": "dist/index.d.ts",
+ "dependencies": {
+ "@types/es6-promise": "^0.0.33",
+ "commander": "^2.12.2",
+ "fs-extra": "^5.0.0"
+ },
+ "devDependencies": {
+ "@types/fs-extra": "^5.0.0",
+ "typescript": "^2.6.2"
+ }
+}