{ "name": "prettier", "version": "1.3.1", "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.45.0", "get-stdin": "5.0.1", "glob": "7.1.1", "jest-validate": "20.0.0", "minimist": "1.2.0" }, "devDependencies": { "diff": "3.2.0", "jest": "20.0.0", "mkdirp": "^0.5.1", "rimraf": "^2.6.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.3.2", "typescript-eslint-parser": "git://github.com/eslint/typescript-eslint-parser.git#3f9f41c7d8bcdaa3fbd68767e390f07f05555c3a" }, "scripts": { "test": "jest", "format": "./bin/prettier.js --write", "format:single": "npm run format -- src/printer.js", "format:all": "npm run format -- index.js \"{src,bin,tests_config,scripts}/*.js\" \"tests/**/jsfmt.spec.js\"", "build:docs": "rollup -c docs/rollup.config.js" }, "jest": { "setupFiles": [ "/tests_config/run_spec.js" ], "snapshotSerializers": [ "/tests_config/raw-serializer.js" ], "testRegex": "jsfmt\\.spec\\.js$", "testPathIgnorePatterns": [ "tests/new_react", "tests/more_react", "see https://github.com/eslint/typescript-eslint-parser/issues/269", "tests/typescript/conformance/types/abstractKeyword/jsfmt.spec.js" ] } }