-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1009 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
35
36
37
38
39
{
"name": "mongoose-sequence-plugin",
"version": "1.0.5",
"description": "Mongoose plugin to autoincrement alphanumeric field",
"main": "index.js",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kasongoyo/mongoose-sequence-plugin.git"
},
"keywords": [
"Mongoose",
"Autoincrement",
"Sequence generator"
],
"author": "Isaac Kasongoyo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasongoyo/mongoose-sequence-plugin/issues"
},
"homepage": "https://github.com/kasongoyo/mongoose-sequence-plugin#readme",
"devDependencies": {
"chai": "^3.4.1",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.12.0",
"grunt-express-server": "^0.5.1",
"grunt-mocha-test": "^0.12.7",
"jshint-stylish": "^2.1.0",
"load-grunt-tasks": "^3.4.0",
"mocha": "^2.3.4",
"mongoose": "^4.3.6"
},
"dependencies": {
"async": "^1.5.2",
"lodash": "^4.0.1"
}
}