forked from mcmath/ejs-html-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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": "2.0.2",
"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 lib 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": ">=0.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akim-mcmath/ejs-html-loader.git"
},
"keywords": [
"webpack",
"webpack-2",
"loader",
"webpack-loader",
"ejs",
"html",
"template"
],
"author": "Akim McMath <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/akim-mcmath/ejs-html-loader/issues"
},
"homepage": "https://github.com/akim-mcmath/ejs-html-loader#readme",
"peerDependencies": {
"webpack": "1.x - 2.x",
"ejs": "2.x"
},
"dependencies": {
"loader-utils": "^0.2.15"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"bluebird": "^3.4.0",
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coveralls": "^2.11.9",
"ejs": "^2.4.2",
"eslint": "^2.11.1",
"file-loader": "^0.8.5",
"istanbul": "1.0.0-alpha.2",
"mocha": "^2.5.3",
"relative-path-map": "^1.0.1",
"rimraf": "^2.5.2",
"webpack": "^1.12.13"
}
}