-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "@videsk/mongoose-dummy",
"type": "module",
"version": "1.0.0",
"description": "Random data generator based on mongoose schema, with very flexible options, populate feature and easily integrable with random data generators libraries.",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "mocha",
"coverage": "c8 npm run test"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/videsk/mongoose-dummy.git"
},
"keywords": [
"videsk",
"library"
],
"author": "Videsk <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/videsk/mongoose-dummy/issues"
},
"homepage": "https://github.com/videsk/mongoose-dummy#readme",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"c8": "^9.1.0",
"chai": "^5.1.0",
"codecov": "^3.8.3",
"mocha": "^10.3.0",
"mongoose": "^8.2.3",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2"
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"uuid": "^9.0.1"
}
}