aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 8367ef3856fcae2fc01f8287750944334e750469 (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
26
27
28
29
{
  "name": "create-riot-component",
  "version": "1.0.3",
  "description": "Create ES6 riot.js component",
  "main": "dist/index.js",
  "bin": {
    "create-riot-component": "./dist/index.js"
  },
  "author": "Jan Tuomi",
  "repository": {
    "type": "git",
    "url": "https://github.com/jantuomi/create-riot-component"
  },
  "license": "MIT",
  "scripts": {
    "build": "tsc --outDir dist",
    "prepublish": "npm run build"
  },
  "types": "typings.d.ts",
  "dependencies": {
    "commander": "^2.12.2",
    "fs-extra": "^5.0.0"
  },
  "devDependencies": {
    "@types/es6-promise": "^0.0.33",
    "@types/fs-extra": "^5.0.0",
    "typescript": "^2.6.2"
  }
}