aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 15359cce1e6bcaf370fca1ad7f79c2728d0665f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"
  }
}