-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
{
"name": "mongoose-friends-plugin",
"version": "0.7.3",
"description": "2-way friendship relationship plugin for Mongoose ODM",
"author": "Martin Litvaj <[email protected]>",
"homepage": "https://github.com/kamahl19/mongoose-friends-plugin",
"bugs": {
"url": "https://github.com/kamahl19/mongoose-friends-plugin/issues"
},
"private": false,
"license": "MIT",
"engine": "node >= 0.10.x",
"main": "index.js",
"scripts": {
"lint": "eslint src test",
"build:source": "rimraf dist/ && babel src/ --out-dir dist/",
"build:tests": "rimraf test-dist/ && babel test/ --out-dir test-dist/",
"clean": "rimraf dist/ && rimraf test-dist/",
"build": "npm run build:source && npm run build:tests",
"test": "node node_modules/mocha/bin/mocha --reporter spec --require should --ui tdd test-dist/*"
},
"repository": {
"type": "git",
"url": "[email protected]:kamahl19/mongoose-friends-plugin.git"
},
"keywords": [
"mongoose",
"plugin",
"friendships",
"friends"
],
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-eslint": "7.1.1",
"babel-preset-latest": "6.22.0",
"babel-preset-stage-3": "6.22.0",
"dotenv": "^4.0.0",
"eslint": "3.14.0",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-eslint": "3.0.1",
"gulp-mocha": "3.0.1",
"gulp-rimraf": "0.2.1",
"mocha": "3.2.0",
"mongoose": "4.8.1",
"rimraf": "2.5.4",
"run-sequence": "1.2.2",
"should": "11.1.2"
},
"peerDependencies": {
"mongoose": "^4.8.1"
}
}