package.json
1 { 2 "name": "degenerator", 3 "version": "2.2.0", 4 "description": "Compiles sync functions into async generator functions", 5 "main": "dist/src/index", 6 "typings": "dist/src/index", 7 "files": [ 8 "dist/src" 9 ], 10 "scripts": { 11 "prebuild": "rimraf dist", 12 "build": "tsc", 13 "postbuild": "cpy --parents src test '!**/*.ts' dist", 14 "test": "mocha --reporter spec dist/test/test.js", 15 "test-lint": "eslint src --ext .js,.ts", 16 "prepublishOnly": "npm run build" 17 }, 18 "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)", 19 "repository": { 20 "type": "git", 21 "url": "git://github.com/TooTallNate/node-degenerator.git" 22 }, 23 "engines": { 24 "node": ">= 6" 25 }, 26 "license": "MIT", 27 "dependencies": { 28 "ast-types": "^0.13.2", 29 "escodegen": "^1.8.1", 30 "esprima": "^4.0.0" 31 }, 32 "devDependencies": { 33 "@types/escodegen": "^0.0.6", 34 "@types/esprima": "^4.0.2", 35 "@types/mocha": "^5.2.7", 36 "@types/node": "^12.12.17", 37 "@typescript-eslint/eslint-plugin": "1.6.0", 38 "@typescript-eslint/parser": "1.1.0", 39 "cpy-cli": "^2.0.0", 40 "eslint": "5.16.0", 41 "eslint-config-airbnb": "17.1.0", 42 "eslint-config-prettier": "4.1.0", 43 "eslint-import-resolver-typescript": "1.1.1", 44 "eslint-plugin-import": "2.16.0", 45 "eslint-plugin-jsx-a11y": "6.2.1", 46 "eslint-plugin-react": "7.12.4", 47 "mocha": "^6.2.0", 48 "rimraf": "^3.0.0", 49 "typescript": "^3.7.3" 50 } 51 }