-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 756 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 756 Bytes
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
{
"name": "slugin",
"version": "0.0.12",
"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 --reporter spec --require should"
},
"repository": {
"type": "git",
"url": "git://github.com/pvencill/slugin.git"
},
"keywords": [
"mongoose",
"unique",
"slug",
"plugin"
],
"author": "Paul Vencill",
"license": "MIT",
"bugs": {
"url": "https://github.com/pvencill/slugin/issues"
},
"homepage": "https://github.com/pvencill/slugin",
"dependencies": {
"inflection": "^1.3.5",
"lodash": "~2.4.1",
"mongoose": "~3.8.9",
"slugs": "~0.1.2"
}
}