-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "nunjucks-render-loader",
"version": "0.0.2",
"description": "nunjucks template loader module for webpack",
"main": "index.js",
"repository": "https://github.com/iyonaga/nunjucks-render-loader.git",
"homepage": "https://github.com/iyonaga/nunjucks-render-loader",
"bugs": "https://github.com/iyonaga/nunjucks-render-loader/issues",
"keywords": [
"nunjucks",
"webpack",
"loader"
],
"author": "iyonaga <yiyonaga@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js index.js --format codeframe",
"lint:fix": "prettier-eslint --write index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"dependencies": {
"loader-utils": "^1.2.3",
"lodash": "^4.17.15",
"nunjucks": "^3.2.0"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"prettier-eslint-cli": "^5.0.0"
}
}