{ "name": "prettier", "version": "0.0.10", "description": "Prettier is an opinionated JavaScript formatter", "bin": { "prettier": "./bin/prettier.js" }, "repository": { "type": "git", "url": "git+https://github.com/jlongster/prettier.git" }, "author": "James Long", "license": "MIT", "bugs": { "url": "https://github.com/jlongster/prettier/issues" }, "main": "./index.js", "dependencies": { "ast-types": "git+https://github.com/jlongster/ast-types.git", "babylon": "6.15.0", "esutils": "2.0.2", "flow-parser": "0.38.0", "get-stdin": "5.0.1", "glob": "7.1.1", "minimist": "1.2.0" }, "devDependencies": { "jest": "18.0.0", "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-resolve": "2.0.0", "rollup-plugin-real-babili": "1.0.0-alpha3" }, "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" ] } }