-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1010 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 1010 Bytes
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": "owe-http",
"version": "0.11.2",
"description": "Exposes an owe.js API node via HTTP.",
"keywords": [
"owe",
"owe.js",
"http"
],
"license": "LGPL-3.0",
"author": {
"name": "Clemens Damke",
"email": "clemens@cortys.de",
"url": "http://www.cortys.de"
},
"repository": {
"type": "git",
"url": "https://github.com/runnr/owe-http.git"
},
"engines": {
"node": ">=6.0"
},
"main": "src/index.js",
"dependencies": {
"is-stream": "1.1.0",
"qs": "6.5.1",
"body": "5.1.0",
"accepts": "1.3.5"
},
"peerDependencies": {
"owe-core": "0.11.x"
},
"devDependencies": {
"owe-core": "0.11.x",
"owe.js": "0.11.x",
"eslint": "4.19.1",
"eslint-config-cortys": "1.x",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"express": "latest",
"gulp": "3.9.1",
"gulp-eslint": "4.0.2",
"gulp-mocha": "5.0.0",
"mocha": "5.1.1",
"run-sequence": "2.2.1"
},
"scripts": {
"test": "./node_modules/.bin/gulp test",
"prepublish": "./node_modules/.bin/gulp test"
}
}