This repository was archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.17 KB
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
{
"name": "mongoose-transform-field-plugin",
"version": "1.0.2",
"description": "An automatic field transformation plugin for Mongoose 5",
"main": "dist/index.js",
"engines": {
"node": ">=6.0"
},
"scripts": {
"reinstall": "rm -rf node_modules package-lock.json && npm install",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"doctoc": "doctoc --github README.md",
"typecheck": "tsc --noEmit",
"typecheck:watch": "npm run typecheck -- --watch",
"lint": "tslint -p ./tsconfig.test.json -s node_modules/custom-tslint-formatters/formatters -t grouped",
"lint:fix": "npm run lint -- --fix",
"test": "rimraf coverage && cross-env TS_NODE_TYPE_CHECK=1 TS_NODE_CACHE_DIRECTORY=./node_modules/.cache/ts-node TS_NODE_PROJECT=./tsconfig.test.json nyc mocha --opts ./mocha.opts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alorel/mongoose-transform-field-plugin.git"
},
"keywords": [
"mongoose",
"plugin",
"field",
"transform",
"middleware",
"normalise",
"normalisation"
],
"author": {
"name": "Arturas Molcanovas",
"url": "https://github.com/Alorel",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Alorel/mongoose-transform-field-plugin/issues"
},
"homepage": "https://github.com/Alorel/mongoose-transform-field-plugin",
"dependencies": {
"@types/mongoose": "^5.0.0",
"remove-accents": "^0.4.2",
"tslib": "^1.0.0",
"typescript-lazy-get-decorator": "^1.0.0"
},
"peerDependencies": {
"mongoose": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/lodash": "^4.14.102",
"@types/mocha": "^5.0.0",
"@types/node": "^10.0.3",
"@types/uuid": "^3.4.3",
"bson": "*",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"custom-tslint-formatters": "^2.1.1",
"doctoc": "^1.3.0",
"lodash": "^4.17.5",
"mocha": "^5.0.0",
"mongoose": "^5.0.3",
"nyc": "^12.0.1",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.5",
"ts-node": "^7.0.0",
"tslint": "^5.9.1",
"typescript": "^2.7.1",
"uuid": "^3.2.1"
}
}