-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "sprintly-search",
"version": "2.3.0",
"description": "Interface to the Sprintly cross-product search API",
"main": "lib/index.js",
"scripts": {
"test": "istanbul cover -x 'fixtures/*' -x '**/*_test.js' _mocha -- `find . -name '*_test.js'`",
"lint": "eslint lib/",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git://github.com/sprintly/sprintly-search.git"
},
"keywords": [
"search",
"sprintly",
"api"
],
"author": "Justin Abrahms",
"license": "MIT",
"bugs": {
"url": "https://github.com/sprintly/sprintly-search.git/issues"
},
"browser": {
"request": "browser-request"
},
"homepage": "https://github.com/sprintly/sprintly-search.git",
"devDependencies": {
"eslint": "^0.14.1",
"express": "^4.11.2",
"freeport": "^1.0.4",
"istanbul": "^0.3.5",
"mocha": "^2.0.1",
"npm-watch": "0.0.0",
"rewire": "^2.2.0",
"sinon": "^1.12.2"
},
"dependencies": {
"async": "^0.9.0",
"browser-request": "^0.3.3",
"lodash": "^2.4.1",
"q": "^1.1.2",
"request": "^2.51.0",
"yargs": "^1.3.3"
},
"watch": {
"test": "lib/*.js",
"lint": "lib/*.js"
}
}