prettier/package.json

83 lines
2.4 KiB
JSON
Raw Normal View History

2016-11-29 20:14:10 +03:00
{
2017-01-10 06:45:22 +03:00
"name": "prettier",
2017-09-30 13:44:28 +03:00
"version": "1.7.3",
"description": "Prettier is an opinionated code formatter",
"bin": {
"prettier": "./bin/prettier.js"
},
2017-03-14 00:39:54 +03:00
"repository": "prettier/prettier",
"homepage": "https://prettier.io",
"author": "James Long",
"license": "MIT",
2016-11-29 23:23:00 +03:00
"main": "./index.js",
"engines": {
"node": ">=4"
},
"dependencies": {
"babel-code-frame": "7.0.0-alpha.12",
2017-09-15 18:26:35 +03:00
"babylon": "7.0.0-beta.23",
"camelcase": "4.1.0",
"chalk": "2.1.0",
"cosmiconfig": "3.1.0",
"dashify": "0.2.2",
"diff": "3.2.0",
"esutils": "2.0.2",
"flow-parser": "0.51.0",
"get-stream": "3.0.0",
2017-10-02 18:58:21 +03:00
"globby": "6.1.0",
"graphql": "0.10.1",
2017-10-02 18:58:21 +03:00
"ignore": "3.3.5",
2017-09-14 08:13:03 +03:00
"jest-docblock": "21.1.0",
"jest-validate": "21.1.0",
"leven": "2.1.0",
"mem": "1.1.0",
"minimatch": "3.0.4",
"minimist": "1.2.0",
"parse5": "3.0.2",
2017-10-02 18:58:21 +03:00
"postcss-less": "1.1.1",
"postcss-media-query-parser": "0.2.3",
"postcss-scss": "1.0.0",
"postcss-selector-parser": "2.2.3",
"postcss-values-parser": "1.3.1",
"strip-bom": "3.0.0",
2017-09-27 08:43:17 +03:00
"typescript": "2.5.3",
"typescript-eslint-parser": "git://github.com/eslint/typescript-eslint-parser.git#9c71a627da36e97da52ed2731d58509c952b67ae"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-preset-es2015": "6.24.1",
"codecov": "2.2.0",
"cross-env": "5.0.1",
2017-06-28 22:37:33 +03:00
"eslint": "4.1.1",
"eslint-friendly-formatter": "3.0.0",
"eslint-plugin-import": "2.6.1",
2017-06-28 22:37:33 +03:00
"eslint-plugin-prettier": "2.1.2",
"eslint-plugin-react": "7.1.0",
2017-09-14 08:13:03 +03:00
"jest": "21.1.0",
"markdown-toc": "1.1.0",
2017-10-02 18:58:21 +03:00
"mkdirp": "0.5.1",
2017-09-30 15:28:53 +03:00
"prettier": "1.7.3",
"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",
2017-05-29 07:49:41 +03:00
"rollup-plugin-replace": "1.1.1",
"shelljs": "0.7.8",
"strip-ansi": "4.0.0",
"sw-toolbox": "3.6.0",
"uglify-es": "3.0.15",
"webpack": "2.6.1"
},
"scripts": {
"prepublishOnly": "echo \"Error: must publish from dist/\" && exit 1",
"test": "jest",
"test-integration": "jest tests_integration",
"lint": "cross-env EFF_NO_LINK_RULES=true eslint . --format node_modules/eslint-friendly-formatter",
"build": "node ./scripts/build/build.js",
"toc": "node ./scripts/table-of-contents.js"
2016-11-29 20:14:10 +03:00
}
}