-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "ejs-html-loader",
"version": "4.0.1",
"description": "Webpack loader for rendering HTML from EJS templates",
"main": "lib/index.js",
"scripts": {
"build": "npm run unbuild && babel src -d lib",
"unbuild": "rimraf lib",
"test:lint": "eslint src test && coffeelint -q test",
"test:unit": "istanbul cover _mocha -- test/index.coffee",
"test:report": "npm run test:unit && open coverage/lcov-report/index.html",
"test": "npm run test:lint && npm run test:unit",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcmath/ejs-html-loader.git"
},
"keywords": [
"webpack",
"loader",
"webpack-loader",
"ejs",
"html",
"template"
],
"author": "Akim McMath <akim@mcmath.io> (http://www.mcmath.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcmath/ejs-html-loader/issues"
},
"homepage": "https://github.com/mcmath/ejs-html-loader#readme",
"peerDependencies": {
"webpack": "2.x - 4.x",
"ejs": "2.x"
},
"dependencies": {
"loader-utils": "^1.2.3"
},
"devDependencies": {
"@mcmath/coffeelint-config": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"coffeelint": "^2.1.0",
"coffeescript": "^2.3.2",
"coveralls": "^3.0.2",
"ejs": "^2.6.1",
"eslint": "^5.12.1",
"file-loader": "^3.0.1",
"istanbul": "1.1.0-alpha.1",
"mocha": "^5.2.0",
"relative-path-map": "^1.0.1",
"rimraf": "^2.6.3",
"webpack": "^4.29.0"
}
}