-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.07 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
{
"name": "mongoose-slug-hero",
"version": "1.1.1",
"description": "Mongoose trackable unique slug generator plugin.",
"keywords": [
"mongoose",
"mongoosejs",
"slugify",
"slug",
"url",
"plugin",
"mongoose-plugin",
"sequence",
"track"
],
"main": "index.js",
"typings": "typings.d.ts",
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/jshint --exclude node_modules ./"
},
"author": {
"name": "Budi Adiono",
"email": "budiadiono@gmail.com",
"url": "http://www.budiadiono.com"
},
"repository": {
"type": "git",
"url": "https://github.com/budiadiono/mongoose-slug-hero.git"
},
"license": "MIT",
"dependencies": {
"slug": "^0.9.1"
},
"devDependencies": {
"@types/mongoose": "*",
"async": "^1.5.0",
"jshint": "^2.9.5",
"lodash": "^3.10.1",
"mocha": "^2.5.3",
"mongoose": "^4.2.9",
"should": "^7.1.1"
},
"peerDependencies": {
"@types/mongoose": "*",
"lodash": "^3.10.1",
"mongoose": ">=3"
},
"files": [
"lib",
"typings.d.ts"
]
}