prettier/package.json

52 lines
1.3 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-01-13 23:09:37 +03:00
"version": "0.0.6",
"bin": {
"prettier": "./bin/prettier.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlongster/prettier.git"
},
"author": "James Long",
"bugs": {
"url": "https://github.com/jlongster/prettier/issues"
},
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",
2017-01-11 01:29:58 +03:00
"babylon": "^6.15.0",
2017-01-11 08:48:49 +03:00
"esutils": "^2.0.2",
"flow-parser": "^0.37.0",
2017-01-11 18:57:16 +03:00
"get-stdin": "^5.0.1",
2016-11-29 20:14:10 +03:00
"minimist": "^1.2.0",
"private": "^0.1.6",
"source-map": "^0.5.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",
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
}
}