decaffeinate-parser
Version:
A better AST for CoffeeScript, inspired by CoffeeScriptRedux.
80 lines (79 loc) • 1.91 kB
JSON
{
"name": "decaffeinate-parser",
"version": "22.5.14",
"description": "A better AST for CoffeeScript, inspired by CoffeeScriptRedux.",
"keywords": [
"ast",
"coffeescript",
"parse"
],
"repository": {
"type": "git",
"url": "https://github.com/decaffeinate/decaffeinate-parser.git"
},
"license": "MIT",
"author": "Brian Donovan",
"files": [
"dist/"
],
"main": "dist/parser.js",
"module": "dist/parser.mjs",
"types": "dist/parser.d.ts",
"scripts": {
"build": "./script/build",
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "yarn lint --fix",
"pretest": "yarn lint",
"test": "jest",
"test:ci": "jest --ci"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,md,json}": [
"prettier --write",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"dependencies": {
"@babel/types": "^7.6.1",
"@codemod/parser": "^1.0.3",
"coffee-lex": "^9.1.5",
"decaffeinate-coffeescript": "1.12.7-patch.3",
"decaffeinate-coffeescript2": "2.2.1-patch.5",
"lines-and-columns": "^1.1.6"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"coffee-script-redux": "^2.0.0-beta8",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.3.0",
"prettier": "^1.18.2",
"sort-package-json": "^1.22.1",
"string-repeat": "^1.1.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"engines": {
"node": ">=6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}