-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.38 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
58
59
60
61
{
"name": "webpack-git-version-plugin",
"version": "1.0.3",
"main": "lib/index.js",
"author": "Tony段 <duanzheng21518@gmail.com>",
"license": "MIT",
"description": "Write the hash value of the current commit of the code to the chunk file",
"homepage": "https://github.com/duanzheng/webpack-git-version-plugin",
"repository": {
"type": "git",
"url": "https://github.com/duanzheng/webpack-git-version-plugin.git"
},
"files": [
"lib/",
"index.js"
],
"scripts": {
"build": "cross-env NODE_ENV=production babel src/ -d lib/",
"lint": "cross-env eslint --cache src"
},
"dependencies": {
"simple-git": "^2.11.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-plugin-add-module-exports": "^1.0.2",
"cross-env": "^7.0.2",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"peerDependencies": {
"webpack": "^4.37.0 || ^5.0.0"
},
"engines": {
"node": ">= 10.13.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"webpack",
"plugin",
"git",
"hash",
"version"
]
}