-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.09 KB
/
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
54
55
{
"name": "hbridge",
"version": "2.0.0",
"description": "Transfer files & text between devices on the local network",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Nateowami/hbridge"
},
"keywords": [
"networking",
"files",
"devices",
"transfer"
],
"author": "Nathaniel Paulus",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nateowami/hbridge/issues"
},
"homepage": "https://github.com/Nateowami/hbridge",
"dependencies": {
"body-parser": "^1.17.1",
"dev-ip": "^1.0.1",
"express": "^4.15.2",
"multer": "^1.2.0",
"pug": "^2.0.0-rc.1",
"unique-file-name": "^0.1.4"
},
"jshintConfig": {
"undef": true,
"unused": true,
"predef": [
"require",
"console",
"module",
"Buffer",
"__dirname",
"process"
]
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"node": true
},
"rules": {
"no-console": "off"
}
}
}