-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.03 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
{
"name": "wajez-utils",
"version": "0.1.1",
"description": "Handy utils for api development.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"dev": "docker-compose run --rm app bash -c 'npm test'"
},
"engines": {
"node": ">=8.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wajez/utils.git"
},
"keywords": [
"utils",
"schema",
"mongodb",
"mongoose",
"seeder",
"generate",
"random",
"data",
"convert",
"transform"
],
"author": "Amine Ben hammou",
"license": "MIT",
"bugs": {
"url": "https://github.com/wajez/utils/issues"
},
"homepage": "https://github.com/wajez/utils#readme",
"peerDependencies": {
"mongoose": ">=5"
},
"dependencies": {
"chance": "^1.0.18",
"escape-string-regexp": "^1.0.5",
"randexp": "^0.5.3",
"sanctuary": "^0.14.1"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"istanbul": "^0.4.5",
"mongoose": "^5.4.22",
"jest": "^24.7.1"
}
}