-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1011 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
{
"name": "express-pug-cache-helper",
"version": "2.1.1",
"description": "express helper that caches all .pug files to memory on startup",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=4.2.6"
},
"scripts": {
"test": "mocha",
"lint": "jshint **.js **/*.js",
"coverage": "istanbul cover node_modules/.bin/_mocha"
},
"repository": {
"type": "git",
"url": "[email protected]/Tickaroo/express-pug-cache-helper.git"
},
"peerDependencies": {
"pug": "2.0.0-beta5"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"express": "^4.13.3",
"fs-extra": "^0.30.0",
"istanbul": "^0.4.0",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"superagent": "^1.7.2"
},
"keywords": [
"express",
"expressjs",
"helper",
"cache",
"pug"
],
"author": "Anton Pawlik <[email protected]> (http://antpaw.org)",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0"
}
}