esbeautify
Version:
lightweight and blazing fast JavaScript code generator from an EScaya-compliant AST
107 lines (106 loc) • 3.04 kB
JSON
{
"name": "esbeautify",
"version": "0.0.2",
"description": "lightweight and blazing fast JavaScript code generator from an EScaya-compliant AST",
"main": "dist/esbeautify.umd.min.js",
"module": "dist/esbeautify.esm.min.js",
"jsnext:main": "dist/esbeautify.esm.min.js",
"browser": "dist/esbeautify.umd.min.js",
"types": "dist/esbeautify.d.ts",
"typings": "dist/esbeautify.d.ts",
"author": "KFlash",
"license": "ISC",
"homepage": "https://github.com/escaya/esbeautify",
"repository": {
"type": "git",
"url": "https://github.com/escaya/esbeautify"
},
"bugs": {
"url": "https://github.com/escaya/esbeautify/issues"
},
"keywords": [
"lightweight",
"escaya",
"AST",
"fuzzer",
"fuzz",
"generate",
"generator",
"random",
"print",
"javascript",
"generator",
"code generator",
"ecmascript",
"ecma",
"es2020",
"es2021",
"abstract",
"syntax",
"tree"
],
"files": [
"dist/*.min.js",
"dist/**/*.d.ts",
"README.md",
"LICENSE.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint \"{src,test,scripts}/**/*.{ts,js}\" --fix",
"prettier": "node ./scripts/prettier.js write-changed",
"prettier-all": "node ./scripts/prettier.js write",
"bundle": "cross-env rimraf dist && node scripts/bundle.js",
"bundle:bench": "cross-env rimraf dist && node scripts/bundle.js bench",
"test": "mocha \"test/**/*.ts\"",
"test:single": "mocha",
"test:watch": "npm run test -- --watch --watch-extensions ts",
"test:verbose": "npm run test -- -R spec",
"test:watch:verbose": "npm run test:watch -- -R spec",
"prepare-nightly": "node scripts/bump-dev-version",
"coverage": "cross-env TS_NODE_PROJECT=\"test/tsconfig.json\" nyc -n \"src/**/*.ts\" -e .ts -i ts-node/register -r text-summary -r lcov -r html npm test",
"post_coverage": "cross-env cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"chalk": "^3.0.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"escaya": "0.0.49",
"escaya-codegen": "0.0.11",
"eslint": "^7.8.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"glob": "^7.1.6",
"husky": "^4.2.5",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"path": "^0.12.7",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.28.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"source-map-support": "^0.5.13",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3",
"unicode-13.0.0": "^0.8.0"
},
"husky": {
"hooks": {
"pre-commit": "node ./scripts/prettier.js check-changed"
}
},
"engines": {
"node": ">=6.0.0"
}
}