-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 KB
/
package.json
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
{
"name": "prettier-elastic-query",
"version": "1.2.0",
"description": "Elasticsearch query formatter and highlighter",
"main": "src/main.js",
"dependencies": {
"deasync": "0.1.14",
"js-yaml": "^3.13.1",
"lodash": "^4.17.14",
"ohm-js": "^0.14.0",
"prettier-printer": "^1.1.2",
"prismjs": "^1.15.0",
"safer-eval": "^1.3.2",
"underscore": "^1.9.1"
},
"devDependencies": {
"babel-eslint": "^10.0.0",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"eslint": "^5.6.0",
"eslint-config-google": "^0.10.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"bin": {
"prettier-elastic-query": "bin/cli.js"
},
"unpkg": "dist/prettier-elastic-query.min.js",
"scripts": {
"build-grammar": "node bin/ohm-to-js.js src/grammar.ohm > src/grammar.js",
"build": "yarn build-grammar && npx webpack",
"lint": "npx eslint src",
"prepare": "yarn lint",
"prepublish": "yarn build"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/traut/prettier-elastic-query.git"
},
"keywords": [
"elasticsearch",
"formatter",
"highlighter",
"syntax"
],
"author": "Sergey Polzunov <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/traut/prettier-elastic-query/issues"
},
"homepage": "https://github.com/traut/prettier-elastic-query#readme",
"eslintIgnore": [
"grammar.js"
]
}