-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.92 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
{
"name": "mongoose-modified-at",
"description": "Mongoose plugin that tracking the fields you specified and automatically record the change time of them into DB.",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --verbose --maxWorkers 4",
"test:watch": "yarn test --watch",
"coverage": "yarn test --coverage",
"coverage:report": "yarn coverage --coverageReporters=text-lcov | coveralls",
"build": "rm -rf dist/ && tsc -p tsconfig.build.json",
"lint": "tslint --fix",
"bump": "standard-version --changelogHeader='# Changelog' --release-as",
"release": "yarn test --verbose=false && yarn bump"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/bluebird": "^3.5.27",
"@types/chance": "^1.0.6",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.137",
"@types/mongoose": "^5.5.13",
"bluebird": "^3.5.5",
"chance": "^1.1.0",
"coveralls": "^3.0.7",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.2.4",
"moment": "^2.24.0",
"mongodb-memory-server": "^5.2.2",
"mongoose": "^5.6.10",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.3"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Barrior/mongoose-modified-at.git"
},
"bugs": {
"url": "https://github.com/Barrior/mongoose-modified-at/issues"
},
"author": "Barrior",
"license": "MIT"
}