-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 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
50
51
52
53
54
55
56
57
{
"name": "module-mock-plugin",
"version": "1.0.2",
"main": "index.js",
"description": "The plugin on enhanced-resolver for easy mock",
"author": "imcuttle <moyuyc95@gmail.com>",
"scripts": {
"test": "jest",
"prepublishOnly": "npm test",
"version": "npm run changelog",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"sideEffects": false,
"engines": {
"node": ">=8"
},
"keywords": [
"imcuttle",
"module",
"mock",
"plugin",
"module-mock-plugin"
],
"typings": "index.d.ts",
"license": "MIT",
"repository": "imcuttle/module-mock-plugin",
"jest": {
"testMatch": [
"**/__test{s,}__/*.(spec|test).{t,j}s{x,}"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.1.2",
"conventional-changelog-cli": "^2.0.31",
"enhanced-resolve": "^4.1.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"dependencies": {
"absolute-module-mapper-plugin": "^1.3.1"
}
}