-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 970 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 970 Bytes
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
{
"name": "mrm-task-webpack",
"version": "1.0.0",
"description": "mrm task that adds webpack",
"author": {
"name": "Victor Chan",
"url": "https://vctr.dev"
},
"homepage": "https://github.com/victorzchan/mrm-task-webpack",
"repository": "victorzchan/mrm-task-webpack",
"license": "MIT",
"engines": {
"node": ">=8.9"
},
"main": "index.js",
"files": [
"index.js",
"templates/*"
],
"scripts": {
"lint": "eslint . --cache --fix",
"pretest": "npm run lint",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\"",
"posttest": "npm run format"
},
"keywords": [
"mrm",
"mrm-task",
"webpack",
"javascript"
],
"dependencies": {
"mrm-core": "^4.1.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": ">=2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}