-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.54 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
{
"name": "elasticsearch_nodejs",
"version": "1.0.0",
"description": "Exemplo de como se trabalha com busca textual utilizandonodejs",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/pm2 start index.js --no-daemon --watch",
"coverage": "node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha **/*.spec.js -- -u exports -R spec -b --recursive",
"lint": "./node_modules/.bin/eslint '**/*.js'",
"lint:fix": "./node_modules/.bin/eslint '**/*.js' --fix",
"test": "npm run lint",
"search_bulk_loader": "docker exec -it elasticsearchnodejs_node_1 /bin/bash -c \"cd search && node search_bulk_loader_movies.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kirmayrtomaz/elasticsearch_nodejs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kirmayrtomaz/elasticsearch_nodejs/issues"
},
"homepage": "https://github.com/Kirmayrtomaz/elasticsearch_nodejs#readme",
"devDependencies": {
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"should": "^13.1.2",
"should-sinon": "0.0.6",
"sinon": "^4.0.1"
},
"dependencies": {
"bluebird": "^3.5.0",
"cheerio": "^1.0.0-rc.2",
"elasticsearch": "^13.3.1",
"express": "^4.16.1",
"lodash": "^4.17.4",
"pm2": "^2.7.2",
"request": "^2.83.0"
}
}