{
  "name": "as3-to-typescript",
  "version": "0.1.1",
  "description": "convert as3 code base to typescript",
  "main": "index.js",
  "bin": {
    "as3-to-typescript": "./bin/as3-to-typescript"
  },
  "scripts": {
    "test": "node test/runner generate && node test/runner compare",
    "generate": "node test/runner generate",
    "accept": "node test/runner accept",
    "compile": "tsc --module 'commonjs' --outDir lib --target es5 src/declarations/node.d.ts src/main/parser.ts src/main/emitter.ts src/main/command.ts",
    "watch": "tsc --module 'commonjs' --outDir lib --target es5 --watch src/declarations/node.d.ts src/main/parser.ts src/main/emitter.ts src/main/command.ts"
  },
  "keywords": [
    "actionscript",
    "as3",
    "typescript",
    "compiler"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/fdecampredon/as3-to-typescript.git"
  },
  "bugs": {
    "url": "https://github.com/fdecampredon/as3-to-typescript/issues"
  },
  "author": "François de Campredon <francois.de.campredon@gmail.com>",
  "licenses" : {
    "type": "Apache",
    "url": "http://www.apache.org/licenses/LICENSE-2.0.html"
  },
  "dependencies": {
    "fs-extended": "^0.2.0",
    "rimraf": "^2.2.8",
    "sax": "~0.6.0"
  },
  "devDependencies": {
    "typescript": "~1.3.0"
  }
}
