forked from aptx4869/rails-view-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.96 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
66
67
68
69
70
{
"name": "rails-view-loader",
"version": "1.1.2",
"description": "Rails view files (`.html.slim` , `.html.erb`, `.html.haml`) `webpack` loader.",
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"lint": "standard",
"test": "jest test/index.test.js",
"test-webpack-2": "npm install webpack@2 --save-dev && jest test/index.test.js",
"test-webpack-3": "npm install webpack@3 --save-dev && jest test/index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aptx4869/rails-view-loader.git"
},
"keywords": [
"view",
"loader",
"webpack",
"rails"
],
"author": "Rhys van der Waerden <[email protected]> (https://github.com/rhys-vdw)",
"contributors": [
"Ammar Alammar (https://github.com/a3ammar)",
"Faraz Yashar (https://github.com/fny)",
"Guillermo Iguaran <[email protected]> (https://github.com/guilleiguaran)",
"Jeremiah Atwood (https://github.com/atwoodjw)",
"Jonathan Lehman (https://github.com/jdlehman)",
"Maria Kousta (https://github.com/mkousta)",
"Stanislav E. Govorov (https://github.com/govorov)",
"aptx4869 (https://github.com/aptx4869)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aptx4869/rails-view-loader/issues"
},
"homepage": "https://github.com/aptx4869/rails-view-loader#readme",
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"verbose": true
},
"dependencies": {
"axios": "^0.20.0",
"loader-utils": "^1.1.0",
"lodash.defaults": "^4.2.0",
"retry": "^0.10.1"
},
"peerDependencies": {
"webpack": "^2.0.0 || >= 3.0.0-rc.0 || ^3.0.0"
},
"devDependencies": {
"coveralls": "^2.13.1",
"html-loader": "^0.5.1",
"jest": "^20.0.4",
"standard": "^10.0.3",
"webpack": "^3.0.0"
}
}