-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.43 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "webmake-middleware",
"version": "1.0.0",
"description": "connect and express middleware for webmake",
"keywords": [
"webmake",
"middleware",
"connect",
"express",
"browser",
"server"
],
"author": "Gilles Ruppert <gilles@madeofbytes.com>",
"collaborators": [
"Mariusz Nowak <medikoo+webmake-middleware@medikoo.com> (http://www.medikoo.com/)"
],
"repository": {
"type": "git",
"url": "git://github.com/gillesruppert/webmake-middleware"
},
"bugs": {
"url": "https://github.com/gillesruppert/webmake-middleware/issues"
},
"scripts": {
"lint": "eslint .",
"test": "node ./node_modules/.bin/mocha test/*-test.js"
},
"eslintConfig": {
"root": true,
"extends": "medikoo",
"env": {
"node": true
},
"rules": {
"no-console": "off"
},
"overrides": [
{
"files": "test/**",
"env": {
"mocha": true
}
},
{
"files": "error-template.js",
"globals": {
"document": true
}
}
]
},
"eslintIgnore": [
"test/fixtures/**"
],
"license": "MIT",
"dependencies": {
"entities": "^1.1.2",
"es5-ext": "^0.10.46",
"webmake": "^0.4"
},
"devDependencies": {
"async": "^2.6.1",
"connect": "^3.6.6",
"eslint": "^5.8",
"eslint-config-medikoo": "^1.44",
"expect.js": "^0.3.1",
"express": "^4.16.4",
"mocha": "^5.2"
}
}