{ "name": "prettier", "version": "0.22.0", "description": "Prettier is an opinionated JavaScript formatter", "bin": { "prettier": "./bin/prettier.js" }, "repository": "prettier/prettier", "author": "James Long", "license": "MIT", "main": "./index.js", "dependencies": { "ast-types": "0.9.8", "babel-code-frame": "6.22.0", "babylon": "7.0.0-beta.8", "chalk": "1.1.3", "esutils": "2.0.2", "flow-parser": "0.43.0", "get-stdin": "5.0.1", "glob": "7.1.1", "jest-validate": "19.0.0", "minimist": "1.2.0" }, "devDependencies": { "diff": "3.2.0", "jest": "19.0.1", "rollup": "0.41.1", "rollup-plugin-commonjs": "7.0.0", "rollup-plugin-json": "2.1.0", "rollup-plugin-node-builtins": "2.0.0", "rollup-plugin-node-globals": "1.1.0", "rollup-plugin-node-resolve": "2.0.0", "typescript": "2.2.1", "typescript-eslint-parser": "git://github.com/eslint/typescript-eslint-parser.git#bfb1506c48b625871ffeb67dbec7941d460f8941" }, "scripts": { "test": "jest", "format": "./bin/prettier.js --write", "format:single": "npm run format -- src/printer.js", "format:all": "npm run format -- index.js src/*.js bin/*.js", "build:docs": "rollup -c docs/rollup.config.js" }, "jest": { "setupFiles": [ "/tests_config/run_spec.js" ], "testRegex": "jsfmt\\.spec\\.js$", "testPathIgnorePatterns": [ "tests/new_react", "tests/more_react" ] } }