-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 963 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
39
{
"name": "gitsearch",
"version": "0.0.1",
"description": "git repository indexer and client",
"main": "index.js",
"author": "Tom Alexander <[email protected]>",
"scripts": {
"start": "node ./source/cli.js",
"test": "./node_modules/.bin/mocha spec",
"lint": "./node_modules/.bin/eslint ./source/**"
},
"preferGlobal": true,
"bin": {
"gitsearch": "./source/cli.js"
},
"license": "MIT",
"dependencies": {
"basic-auth": "^1.0.3",
"bluebird": "3.3.1",
"body-parser": "^1.15.0",
"bodybuilder": "^1.2.0",
"elasticsearch": "10.1.3",
"escape-html": "1.0.3",
"express": "4.13.4",
"express-handlebars": "3.0.0",
"mime": "1.3.4",
"minimatch": "^3.0.0",
"nodegit": "0.11.2",
"tmp": "0.0.28"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"supertest": "^1.2.0"
}
}