forked from fastpanel/mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "@fastpanel/mongo",
"version": "0.2.1-alpha.1",
"description": "Extension to work with \"MongoDB\" base.",
"author": "Desionlab <fenixphp@gmail.com>",
"main": "build/index.js",
"types": "build/index.d.ts",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"compile": "./node_modules/.bin/tsc",
"develop": "./node_modules/.bin/tsc --watch",
"docs": "./node_modules/.bin/typedoc --theme minimal --target 'esnext' --excludeNotExported --excludePrivate --ignoreCompilerErrors --out ./docs/ ./src/",
"test": "./node_modules/.bin/mocha --require ts-node/register test/**/*.spec.ts",
"build": "npm run test && npm run compile && npm run docs",
"prepare": "npm run test && npm run compile && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastpanel/mongo.git"
},
"bugs": {
"url": "https://github.com/fastpanel/mongo/issues"
},
"homepage": "https://github.com/fastpanel/mongo#readme",
"keywords": [
"nodejs",
"typescript",
"mongodb",
"mongoose"
],
"dependencies": {
"mongoose": "^5.6.7",
"mongoose-autopopulate": "^0.9.1",
"mongoose-bcrypt": "^1.6.0",
"mongoose-hidden": "^1.6.2",
"mongoose-mpath": "^2.0.11"
},
"devDependencies": {
"@fastpanel/core": "^0.2.1-alpha.1",
"@types/chai": "^4.1.7",
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.136",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.11",
"@types/node": "^12.6.8",
"@types/ora": "^3.2.0",
"@types/progress": "^2.0.3",
"@types/vorpal": "^1.11.0",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"license": "MIT"
}