forked from nassor/mongoose-auto-increment
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.54 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@streethub/mongoose-auto-increment",
"version": "5.1.1",
"description": "This plugin allows you to auto-increment any field on any mongoose schema that you wish.",
"repository": {
"type": "git",
"url": "git@github.com:Trouva/mongoose-auto-increment.git"
},
"dependencies": {
"extend": "^3.0.0"
},
"peerDependencies": {
"mongoose": "^6.7.3"
},
"devDependencies": {
"async": "*",
"chai": "*",
"mocha": "*",
"mongoose": "^6.7.3"
},
"keywords": [
"mongoose",
"plugin",
"auto-increment",
"auto",
"increment",
"automatic",
"autoincrement",
"auto_increment",
"autoinc",
"auto-inc",
"auto_inc",
"pureautoinc",
"mongoose-pureautoinc"
],
"author": {
"name": "Alex Ford (Chevex)",
"email": "alex.ford@codetunnel.com",
"url": "http://CodeTunnel.com"
},
"contributors": [
{
"name": "Nassor Paulino da Silva (rossan)",
"email": "nassor@gmail.com"
},
{
"name": "Misha Koryak (mkoryak)",
"email": "mkoryak@gmail.com",
"url": "http://ExhibitionNest.com"
},
{
"name": "Christopher Hiller (boneskull)",
"url": "http://boneskull.github.io/"
},
{
"name": "tomaskavka",
"url": "https://github.com/tomaskavka"
}
],
"scripts": {
"pretest": "docker-compose up -d",
"test": "mocha --bail --exit",
"posttest": "docker-compose down",
"test:ci": "mocha --bail --exit"
},
"bugs": {
"url": "https://github.com/codetunnel/mongoose-auto-increment/issues"
}
}