-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 910 Bytes
/
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
{
"name": "es-builder",
"version": "0.4.3",
"description": "Elasticsearch query builder for Node.js",
"main": "lib/index.js",
"bin": {
"es-builder": "bin/repl.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/src/index.js",
"test-transpiled": "mocha test/lib/index.js",
"build": "babel src -d lib && babel test/src -d test/lib",
"prepublish": "npm run build && npm run test-transpiled",
"clean": "rm -rf lib && rm -rf test/lib"
},
"keywords": [
"Elasticsearch",
"query",
"dsl",
"builder"
],
"author": "Antonio Valverde",
"license": "ISC",
"repository": "antonvs2/es-builder",
"engines": {
"node": ">=0.12.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.16.0",
"chai": "3.5.0",
"mocha": "^3.1.0"
}
}