-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 KB
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
{
"name": "nqh",
"version": "0.2.0",
"description": "An implementation of Angular's $http service for NodeJS",
"main": "nqh.js",
"private": false,
"repository": "git@github.com:nexus-uw/nqh.git",
"keywords": [
"promise",
"q",
"angular",
"$http",
"http",
"request"
],
"author": "Simon Ramsay",
"license": "MIT",
"bugs": {
"url": "https://github.com/nexus-uw/nqh/issues"
},
"homepage": "https://github.com/nexus-uw/nqh",
"scripts": {
"test": "istanbul cover _mocha -- -R spec",
"typings": "typings install"
},
"directories": {
"test": "test"
},
"dependencies": {
"http-status-to-description": "0.0.1",
"lodash": "^4.13.1",
"node-cache": "^4.1.0",
"q": "^2.0.2",
"request": "^2.44.0"
},
"devDependencies": {
"body-parser": "^1.4.3",
"chai": "^3.5.0",
"codeclimate-test-reporter": "0.4.1",
"express": "^4.7.1",
"istanbul": "^0.4.4",
"mocha": "^3.1.2",
"tslint": "^5.1.0",
"typescript": "^2.0.3",
"typings": "^2.0.0"
}
}