-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.65 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
{
"name": "simple-nunjucks-loader",
"version": "3.2.0",
"description": "Webpack loader for Nunjucks",
"main": "index.js",
"files": [
"lib",
"public"
],
"scripts": {
"build:cjs": "NODE_ENV=cjs babel src --out-dir=. --copy-files --no-copy-ignored --ignore 'src/**/*.spec.js'",
"build:clean": "ls src | xargs -0 rm -rf",
"build": "npm run build:clean && npm run build:cjs",
"lint": "eslint src",
"pretest": "rm -rf test/.coverage && npm run lint",
"test": "jest",
"posttest": "rm -rf ./test/bundles/",
"preversion": "./contrib/good-to-go.sh && npm test",
"postversion": "git push && git push --tags",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ogonkov/nunjucks-loader.git"
},
"keywords": [
"webpack",
"loader",
"nunjucks",
"template",
"html-webpack-plugin"
],
"author": "ogonkov <lesha.ogonkov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ogonkov/nunjucks-loader/issues"
},
"homepage": "https://ogonkov.github.io/nunjucks-loader/",
"dependencies": {
"core-js": "^3.15.2",
"loader-utils": "^2.0.0"
},
"optionalDependencies": {
"glob": "^7.1.6"
},
"peerDependencies": {
"nunjucks": "^3.0.0",
"webpack": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-eslint": "^10.0.3",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.0.0",
"nanoid": "^3.2.0",
"nunjucks": "^3.2.0",
"webpack": "^5.0.0"
},
"engines": {
"node": ">= 10.13.0"
}
}