-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
59 lines (59 loc) · 1.35 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "mongoose-slug-generator",
"version": "1.0.4",
"description": "Mongoose plugin to create slugs and unique slugs in any field",
"main": "index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"prepublish": "npm run test",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kubide/mongoose-slug-generator.git"
},
"keywords": [
"slug",
"url",
"permalink",
"slugify",
"seo",
"mongoose",
"generator",
"unique",
"seo friendly url",
"user friendly url",
"nice looking url",
"pretty url",
"clean url",
"static url",
"nice url"
],
"author": "Kubide <[email protected]> (http://kubide.es)",
"contributors": [
"Ángel Luis Quesada <[email protected]> (http://gelito.me)",
"Eneko Lakasta <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Kubide/mongoose-slug-generator/issues"
},
"homepage": "https://github.com/Kubide/mongoose-slug-generator#readme",
"engines": {
"node": ">= 0.12.7"
},
"dependencies": {
"async": "^1.5.0",
"shortid": "^2.2.4",
"speakingurl": "^7.0.0"
},
"devDependencies": {
"chai": "^3.3.0",
"mocha": "^2.3.3",
"mongoose": "4.*",
"nodemon": "^1.7.1",
"supertest": "^1.1.0"
}
}