forked from auth0/express-brute-mongo
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "express-brute-mongoose",
"version": "1.1.0",
"description": "Mongoose store for express-brute.",
"author": "Chris Bargren <cbargren@gmail.com>",
"homepage": "https://github.com/cbargren/express-brute-mongoose.git",
"main": "dist/index.js",
"scripts": {
"compile": "babel --presets es2015 -d ./dist ./lib",
"lint": "eslint ./lib ./test --quiet",
"prepare": "rm -rf ./dist; yarn compile",
"test": "yarn compile; mocha ./test --recursive --compilers js:babel-register --reporter spec"
},
"repository": {
"type": "git",
"url": "http://github.com/cbargren/express-brute-mongoose.git"
},
"engine": {
"node": ">=0.4.0"
},
"files": [
"dist/"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^8.0.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"eslint": "^4.6.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"expect": "^21.1.0",
"mocha": "^3.2.0",
"mongoose": "^5.4.8",
"prettier": "^1.16.3"
},
"dependencies": {
"express-brute": "^1.0.1",
"moment": "^2.18.1"
}
}