-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (52 loc) · 997 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
52
53
{
"name": "owe-fs",
"version": "0.11.0",
"description": "A file system server for owe.js.",
"keywords": [
"owe",
"owe.js",
"fs",
"file",
"system",
"static"
],
"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-fs.git"
},
"engines": {
"node": ">=6.0"
},
"main": "src/index.js",
"dependencies": {
"send": "0.15.4"
},
"peerDependencies": {
"owe-core": "0.11.x"
},
"devDependencies": {
"eslint": "4.18.1",
"eslint-config-cortys": "1.x",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"express": "4.15.2",
"gulp": "3.9.1",
"gulp-eslint": "4.0.2",
"gulp-mocha": "4.3.1",
"mocha": "5.0.2",
"owe-core": "0.11.x",
"owe-http": "0.11.x",
"owe.js": "0.11.x",
"run-sequence": "2.2.1"
},
"scripts": {
"test": "./node_modules/.bin/gulp test",
"prepublish": "./node_modules/.bin/gulp test"
}
}