forked from pvencill/slugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 846 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
{
"name": "moorea-mongoose-slugin",
"version": "0.1.6",
"description": "Unique slugs plugin for mongoose that is lightweight, concurrency safe, but also follows the normal mongoose plugin pattern.",
"main": "index.js",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/pdesterlich/moorea-mongoose-slugin.git"
},
"keywords": [
"mongoose",
"unique",
"slug",
"plugin"
],
"author": "Phelipe de Sterlich <p.desterlich@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pdesterlich/slugin/issues"
},
"homepage": "https://github.com/pdesterlich/slugin",
"dependencies": {
"inflection": "^1.7.0",
"lodash": "^3.7.0",
"slugs": "^0.1.3"
},
"devDependencies": {
"chai": "^3.3.0",
"mongoose": "^4.0.1"
}
}