prettier/package.json

63 lines
1.7 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-05-04 00:41:25 +03:00
"version": "1.3.1",
"description": "Prettier is an opinionated JavaScript formatter",
"bin": {
"prettier": "./bin/prettier.js"
},
2017-03-14 00:39:54 +03:00
"repository": "prettier/prettier",
"author": "James Long",
"license": "MIT",
2016-11-29 23:23:00 +03:00
"main": "./index.js",
2016-11-29 20:14:10 +03:00
"dependencies": {
"ast-types": "0.9.8",
"babel-code-frame": "6.22.0",
"babylon": "7.0.0-beta.10",
"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",
"eslint": "^3.19.0",
"eslint-plugin-prettier": "^2.1.1",
"jest": "20.0.0",
"mkdirp": "^0.5.1",
"prettier": "^1.3.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#b7220fdbf5a923c64bb6e5bbbfc2ad689ec779eb"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"build:docs": "rollup -c docs/rollup.config.js"
},
"jest": {
"setupFiles": [
"<rootDir>/tests_config/run_spec.js"
],
"snapshotSerializers": [
"<rootDir>/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"
]
2016-11-29 20:14:10 +03:00
}
}