-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
113 lines (113 loc) · 3.17 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "elastic-builder",
"version": "0.0.0-development",
"description": "A JavaScript implementation of the elasticsearch Query DSL",
"main": "src/index.js",
"files": [
"src/",
"repl.js",
"index.d.ts"
],
"types": "./src/index.d.ts",
"scripts": {
"build:umd": "webpack src --output browser/elastic-builder.min.js --mode production",
"build:docs": "documentation build src/index.js --github -o docs -f html -c ./docs/documentation.yml",
"build": "npm run build:umd && npm run build:docs",
"lint": "eslint src test",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged",
"test:src": "cross-env NODE_ENV=test nyc --cache ava test --concurrency 3",
"test:typedef": "tsc --noEmit ./test/typedef.test.ts",
"test": "npm run test:src && npm run test:typedef",
"check": "npm run lint && npm test",
"report": "nyc report --reporter=html",
"coverage": "nyc report --reporter=lcov",
"print-version": "cross-env-shell echo v$npm_package_version",
"prepublishOnly": "npm run -s build",
"postpublish": "bash deploy-docs.sh"
},
"license": "MIT",
"dependencies": {
"lodash.has": "^4.5.2",
"lodash.hasin": "^4.5.2",
"lodash.head": "^4.0.1",
"lodash.isempty": "^4.4.0",
"lodash.isnil": "^4.0.0",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"lodash.omit": "^4.5.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"documentation": "^8.0.0",
"eslint": "^5.1.0",
"eslint-config-chatur": "^3.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-ava": "^4.5.1",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"lodash": "^4.17.10",
"nyc": "^12.0.2",
"prettier": "^1.13.7",
"sinon": "^6.1.3",
"typescript": "^2.9.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8"
},
"release": {
"branches": [
"master",
"next"
]
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
],
"test/**/*.js": [
"eslint --fix",
"git add"
]
},
"homepage": "https://elastic-builder.js.org",
"repository": {
"type": "git",
"url": "https://github.com/sudo-suhas/elastic-builder.git"
},
"bugs": {
"url": "https://github.com/sudo-suhas/elastic-builder/issues"
},
"keywords": [
"elasticsearch",
"elastic-builder",
"querying",
"queries",
"query",
"elastic",
"search",
"elasticjs",
"ejs",
"dsl"
],
"author": "Suhas Karanth <sudo.suhas@gmail.com>",
"contributors": [
"austin ce <austin.cawley@gmail.com>",
"Julien Maitrehenry <julien.maitrehenry@me.com>",
"ochan12 <mateochando@gmail.com>",
"kennylindahl <haxxblaster@gmail.com>",
"foxstarius <aj.franzon@gmail.com>",
"sandeep952 <sandy335582@gmail.com>",
"florian-lackner365 <florian.lackner@365talents.com>",
"Alejandro Marulanda <alejokf@gmail.com>"
]
}