-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1000 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-simplify",
"repository": {
"type": "git",
"url": "https://github.com/stevejay/es-simplify"
},
"version": "1.0.6",
"engines": {
"node": ">=4.3"
},
"description": "Simplifies an english search term to use it with an Elasticsearch completion index",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --recursive",
"posttest": "npm run lint",
"lint": "eslint .",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": {
"name": "Steve Johns",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"should": "^11.1.2"
},
"dependencies": {
"latinize": "^0.4.0"
},
"keywords": [
"elasticsearch"
]
}