prettier/package.json

81 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-14 20:21:33 +03:00
"version": "1.7.0",
"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",
"chalk": "2.1.0",
"cosmiconfig": "3.0.1",
"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",
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",
"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#5576fb48c89165967557e867b9462d43431dcb10"
},
"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",
"mkdirp": "^0.5.1",
"prettier": "1.7.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
}
}