-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1020 Bytes
/
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": "owe.js",
"version": "0.11.3",
"description": "A Node.js wrapper for protocol independent web API exposal.",
"keywords": [
"api",
"web",
"protocol",
"graph",
"exposal",
"wrapper"
],
"license": "LGPL-3.0",
"author": {
"name": "Clemens Damke",
"email": "[email protected]",
"url": "http://www.cortys.de"
},
"repository": {
"type": "git",
"url": "https://github.com/runnr/owe.js.git"
},
"engines": {
"node": ">=6.0"
},
"main": "src/index.js",
"dependencies": {
"@owe/helpers": "0.13.x"
},
"peerDependencies": {
"owe-core": "0.11.x"
},
"devDependencies": {
"owe-core": "0.11.x",
"eslint": "4.18.2",
"eslint-config-cortys": "1.x",
"chai": "4.1.2",
"chai-as-promised": "6.0.0",
"gulp": "3.9.1",
"gulp-eslint": "4.0.2",
"gulp-istanbul": "1.1.1",
"gulp-mocha": "5.0.0",
"mocha": "4.1.0",
"run-sequence": "2.2.1",
"coveralls": "3.0.0"
},
"scripts": {
"test": "./node_modules/.bin/gulp test",
"prepublish": "./node_modules/.bin/gulp test"
}
}