prettier/package.json

35 lines
777 B
JSON
Raw Normal View History

2016-11-29 20:14:10 +03:00
{
2017-01-10 06:45:22 +03:00
"name": "prettier",
2017-01-10 20:18:37 +03:00
"version": "0.0.3",
"bin": {
2017-01-10 06:45:22 +03:00
"prettier": "./bin/prettier"
},
2016-11-29 23:23:00 +03:00
"main": "./index.js",
2016-11-29 20:14:10 +03:00
"dependencies": {
"ast-types": "git+https://github.com/jlongster/ast-types.git",
"babylon": "git+https://github.com/jlongster/babylon.git#published",
"flow-parser": "^0.37.0",
2016-11-29 20:14:10 +03:00
"minimist": "^1.2.0",
"private": "^0.1.6",
"recast": "^0.11.18",
"source-map": "^0.5.6"
},
"devDependencies": {
"jest": "^18.0.0"
},
"scripts": {
"test": "jest",
2017-01-10 06:45:22 +03:00
"format": "./bin/prettier --write src/printer.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
}
}