-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
85 lines (85 loc) · 2.81 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "mongoose-slug-updater",
"version": "3.3.0",
"description": "➔ Schema-based slug plugin for Mongoose ✓ single⋮compound ✓ unique within collection⋮group ✓ nested docs⋮arrays ✓ relative⋮abs paths ✓ sync on change: create⋮save⋮update⋮updateOne⋮updateMany⋮findOneAndUpdate ✓ $set operator ✓ counter⋮shortId",
"main": "index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"prepublish": "npm run snyk-protect; npm run test",
"test": "nyc mocha --reporter spec",
"report": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"dev": "nodemon ./node_modules/.bin/mocha --reporter min --no-deprecation",
"devinline": "nodemon ./node_modules/.bin/mocha --reporter min -g '.*inline.*' --no-deprecation",
"devext": "nodemon ./node_modules/.bin/mocha --reporter min -g '.*external.*' --no-deprecation",
"devbugs": "nodemon ./node_modules/.bin/mocha --reporter min -g 'UpdateOne nested docs declared in extrenal schemas' --no-deprecation",
"devcounter": "nodemon ./node_modules/.bin/mocha --reporter min -g '.*counter.*' --no-deprecation",
"snyk-protect": "snyk protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YuriGor/mongoose-slug-updater.git"
},
"keywords": [
"slug",
"url",
"permalink",
"slugify",
"seo",
"mongoose",
"unique",
"seo friendly url",
"user friendly url",
"nice looking url",
"pretty url",
"clean url",
"static url",
"nice url",
"update slug",
"nested slug"
],
"author": "Yuri Gor (http://yurigor.com)",
"contributors": [
"Rick Ogden (https://rickogden.com/)",
"Ángel Luis Quesada <[email protected]> (http://gelito.me)",
"Eneko Lakasta <[email protected]>",
"Kubide <[email protected]> (http://kubide.es)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/YuriGor/mongoose-slug-updater/issues"
},
"homepage": "https://github.com/YuriGor/mongoose-slug-updater#readme",
"engines": {
"node": ">= 8.3.0"
},
"dependencies": {
"deepdash": "^5.3.5",
"lodash": "^4.17.20",
"shortid": "^2.2.16",
"speakingurl": "^14.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.0",
"coveralls": "^3.1.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"mocha": "^8.3.0",
"mongodb-memory-server": "^6.9.3",
"mongoose": "^5.11.17",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"snyk": "^1.457.0"
},
"snyk": true
}