This repository has been archived by the owner on Sep 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@folhomee-public/mongoose-tracker",
"version": "1.0.5",
"description": "Is a mongoose plugin that automatically keeps track of when the document has been created, updated and optionally when some fields have been modified",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"module": "./build/index.es.js",
"author": "Folhomee <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"mongoose",
"plugin",
"timestamp",
"created",
"updated",
"changed"
],
"bugs": {
"url": "https://github.com/FOLHOMEE/mongoose-tracker/issues",
"email": "[email protected]"
},
"repository": "https://github.com/FOLHOMEE/mongoose-tracker",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"clean": "rimraf build",
"peer": "add-no-save --peer-deps",
"lint": "eslint --ext .js,.ts,.tsx src",
"test": "./node_modules/.bin/jest --forceExit",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx src"
},
"engines": {
"npm": ">=6.4.0",
"node": ">=14.0.0"
},
"peerDependencies": {
"mongoose": "^6.1.5"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@faker-js/faker": "^6.0.0-alpha.5",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"babel-loader": "^8.2.3",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"mongodb-memory-server": "^8.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.63.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.2",
"ts-standard": "^11.0.0",
"typescript": "^4.5.4",
"yarn-add-no-save": "^1.0.3"
}
}