prettier/package.json

56 lines
1.5 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-03-09 20:15:40 +03:00
"version": "0.22.0",
"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.8",
"chalk": "1.1.3",
"esutils": "2.0.2",
"flow-parser": "0.43.0",
"get-stdin": "5.0.1",
"glob": "7.1.1",
"jest-validate": "19.0.0",
"minimist": "1.2.0"
},
"devDependencies": {
"diff": "3.2.0",
2017-02-22 21:28:17 +03:00
"jest": "19.0.1",
"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.2.1",
"typescript-eslint-parser": "git://github.com/eslint/typescript-eslint-parser.git#bfb1506c48b625871ffeb67dbec7941d460f8941"
},
"scripts": {
"test": "jest",
2017-01-10 23:45:20 +03:00
"format": "./bin/prettier.js --write",
"format:single": "npm run format -- src/printer.js",
"format:all": "npm run format -- index.js src/*.js bin/*.js",
"build:docs": "rollup -c docs/rollup.config.js"
},
"jest": {
"setupFiles": [
"<rootDir>/tests_config/run_spec.js"
],
"testRegex": "jsfmt\\.spec\\.js$",
"testPathIgnorePatterns": [
"tests/new_react",
"tests/more_react"
]
2016-11-29 20:14:10 +03:00
}
}