forked from jaredhanson/connect-flash
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 793 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
{
"name": "express-flash-2",
"version": "1.0.1",
"description": "Flash message middleware for express.",
"keywords": [
"express",
"flash",
"messages"
],
"repository": {
"type": "git",
"url": "git://github.com/jack2gs/express-flash-2.git"
},
"bugs": {
"url": "http://github.com/jack2gs/express-flash-2/issues"
},
"author": {
"name": "Jack Gao",
"email": "[email protected]",
"url": "http://www.isupergeek.com/"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"scripts": {
"test": "./node_modules/.bin/mocha test/*.test.js"
},
"engines": {
"node": ">= 0.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}