forked from arijs/prettier-miscellaneous
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "prettier-miscellaneous",
"version": "1.3.1",
"description": "Prettier is an opinionated JavaScript formatter",
"bin": {
"prettier": "./bin/prettier.js"
},
"repository": "arijs/prettier-miscellaneous",
"author": "Rafael Hengles",
"license": "MIT",
"main": "./index.js",
"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.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",
"jest": "20.0.0",
"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.3.2",
"typescript-eslint-parser": "git://github.com/eslint/typescript-eslint-parser.git#f5fcc879b493138eb97b9bdfb39afc4d210b1ddf"
},
"scripts": {
"jest": "jest",
"test": "npm run jest && npm run test-tabs && npm run test-tabs-inv",
"test-tabs": "node ./bin/prettier.js --use-tabs --bracket-spacing --trailing-comma=array,object -- ./bin/prettier.js > ./bin/prettier-with-tabs.js",
"test-tabs-inv": "node ./bin/prettier-with-tabs.js -- ./bin/prettier-with-tabs.js > ./bin/prettier-spaces.js",
"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"
],
"snapshotSerializers": [
"<rootDir>/tests_config/raw-serializer.js"
],
"testRegex": "jsfmt\\.spec\\.js$",
"testPathIgnorePatterns": [
"tests/new_react",
"tests/more_react",
"tests/typescript_nosemi/jsfmt.spec.js",
"tests/typescript/conformance/types/abstractKeyword/jsfmt.spec.js",
"tests/typescript/conformance/classes/classDeclarations/classHeritageSpecification/jsfmt.spec.js",
"tests/typescript/compiler/jsfmt.spec.js",
"tests/typescript/conformance/types/typeReference/jsfmt.spec.js",
"tests/typescript/conformance/types/variableDeclarator/jsfmt.spec.js",
"tests/typescript/conformance/types/typeParameter/jsfmt.spec.js",
"tests/typescript/custom/computedProperties/jsfmt.spec.js",
"tests/typescript/custom/new/jsfmt.spec.js",
"tests/typescript/custom/call/jsfmt.spec.js",
"tests/typescript/custom/typeParameters/jsfmt.spec.js",
"tests/typescript/conformance/internalModules/importDeclarations/jsfmt.spec.js",
"tests/typescript/conformance/expressions/functionCalls/jsfmt.spec.js",
"tests/typescript/conformance/es6/Symbols/jsfmt.spec.js",
"tests/typescript/conformance/classes/jsfmt.spec.js",
"tests/typescript/conformance/classes/constructorDeclarations/constructorParameters/jsfmt.spec.js",
"tests/typescript/custom/module/jsfmt.spec.js"
]
}
}