-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
57 lines (57 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "node-zillow",
"version": "2.0.0",
"main": "lib/node-zillow.js",
"description": "Node wrapper for the Zillow API",
"homepage": "http://github.com/ralucas/node-zillow",
"bugs": "http://github.com/ralucas/node-zillow/issues",
"author": {
"name": "Richard Lucas",
"email": "richard@richardalucas.com",
"url": "http://www.richardalucas.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ralucas/node-zillow.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ralucas/node-zillow/blob/master/LICENSE-MIT"
}
],
"keywords": [
"zillow",
"node"
],
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"dotenv": "^5.0.1",
"eyes": "^0.1.8",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"jshint": "^2.9.5",
"jshint-stylish": "~2.2.1",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.8.0",
"sinon": "^5.0.7"
},
"scripts": {
"clean": "rm -rf node_modules",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"docs": "./node_modules/.bin/jsdoc -c docs/conf.json",
"lint": "./node_modules/.bin/jshint -c .jshintrc ./lib/",
"test": "./node_modules/.bin/mocha",
"test:ci": "npm run lint && npm test",
"test:cov": "./node_modules/.bin/nyc ./node_modules/.bin/mocha"
},
"dependencies": {
"lodash": "^4.0.1",
"object-assign": "^4.0.1",
"q": "^1.4.1",
"request": "^2.69.0",
"xml2js": "^0.4.16"
}
}