-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.19 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.19 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
48
49
50
51
52
53
54
{
"name": "wrapi",
"version": "1.0.2",
"description": "Wrapper for calling Restful API",
"homepage": "https://github.com/palanik",
"main": "index.js",
"scripts": {
"test-mocha": "mocha ./test",
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [
"Restful",
"API",
"wrapper",
"functions",
"nodeback",
"api",
"wrapi",
"function",
"api wrapper",
"api function"
],
"author": "N. Palani Kumanan",
"contributors": [
"N. Palani Kumanan",
"John Schimmel (https://github.com/johnschimmel)"
],
"repository": {
"type": "git",
"url": "https://github.com/palanik/wrapi.git"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"es6-promise": "^4.2.4",
"extend": "^3.0.1",
"request": "^2.83.0",
"urlpattern": "^0.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.1.0",
"nock": "^9.1.5",
"semver": "^5.4.1"
},
"engines": {
"node": ">= 0.10.0"
}
}