prettier/package.json

75 lines
2.3 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-08-29 19:00:14 +03:00
"version": "1.6.1",
"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",
"dependencies": {
"babel-code-frame": "7.0.0-alpha.12",
2017-08-29 02:11:32 +03:00
"babylon": "7.0.0-beta.22",
2017-07-08 15:07:03 +03:00
"chalk": "2.0.1",
"cosmiconfig": "2.2.2",
"dashify": "0.2.2",
"diff": "3.2.0",
"esutils": "2.0.2",
"flow-parser": "0.51.0",
"get-stream": "3.0.0",
"globby": "^6.1.0",
"graphql": "0.10.1",
"ignore": "^3.3.3",
"jest-validate": "20.0.3",
"minimatch": "3.0.4",
"minimist": "1.2.0",
"parse5": "3.0.2",
"postcss": "^6.0.1",
"postcss-less": "^1.0.0",
"postcss-media-query-parser": "0.2.3",
"postcss-scss": "1.0.0",
"postcss-selector-parser": "2.2.3",
"postcss-values-parser": "git://github.com/lydell/postcss-values-parser.git#af2c80b2bb558a6e7d61540d97f068f9fa162b38",
"strip-bom": "3.0.0",
2017-08-26 15:36:50 +03:00
"typescript": "2.5.1",
"typescript-eslint-parser": "git://github.com/eslint/typescript-eslint-parser.git#801d65585af6995a223136862944095b48f5c567"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-preset-es2015": "6.24.1",
"codecov": "2.2.0",
"cross-env": "5.0.1",
"cross-spawn": "5.1.0",
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",
"jest": "20.0.0",
"markdown-toc": "1.1.0",
"mkdirp": "^0.5.1",
"prettier": "1.6.0",
"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",
"sw-toolbox": "3.6.0",
"uglify-es": "3.0.15",
"webpack": "2.6.1"
},
"scripts": {
"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
}
}