prettier/package.json

53 lines
1.3 KiB
JSON

{
"name": "prettier",
"version": "0.0.8",
"bin": {
"prettier": "./bin/prettier.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlongster/prettier.git"
},
"author": "James Long",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlongster/prettier/issues"
},
"main": "./index.js",
"dependencies": {
"ast-types": "git+https://github.com/jlongster/ast-types.git",
"babylon": "6.15.0",
"esutils": "2.0.2",
"flow-parser": "0.38.0",
"get-stdin": "5.0.1",
"jsesc": "2.4.0",
"minimist": "1.2.0",
"private": "0.1.6"
},
"devDependencies": {
"jest": "18.0.0",
"rollup": "0.41.1",
"rollup-plugin-commonjs": "7.0.0",
"rollup-plugin-node-builtins": "2.0.0",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-real-babili": "1.0.0-alpha3"
},
"scripts": {
"test": "jest",
"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"
]
}
}