-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 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
{
"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 <devs@videsk.io>",
"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": "^9.5.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2"
},
"release": {
"branches": [
"main"
]
}
}