-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
67 lines (67 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "rails-erb-loader",
"version": "5.5.2",
"description": "Embedded Ruby (`.erb`) `webpack` loader for Ruby projects.",
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"lint": "eslint index.js",
"test": "jest",
"test-webpack-2": "npm install webpack@2 --no-save && jest",
"test-webpack-3": "npm install webpack@3 --no-save && jest",
"test-webpack-4": "npm install webpack@4 --no-save && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usabilityhub/rails-erb-loader.git"
},
"keywords": [
"erb",
"loader",
"webpack",
"ruby",
"rails"
],
"author": "Rhys van der Waerden <[email protected]> (https://github.com/rhys-vdw)",
"contributors": [
"Ammar Alammar (https://github.com/a3ammar)",
"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)",
"Faraz Yashar (https://github.com/fny)",
"Evan Pavlica (https://github.com/xicreative)",
"PikachuEXE <[email protected]> (https://github.com/PikachuEXE)",
"Joseph Farina <[email protected]> (https://github.com/josephfarina)",
"Andy Braga <[email protected]> (https://github.com/bragovo)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/usabilityhub/rails-erb-loader/issues"
},
"homepage": "https://github.com/usabilityhub/rails-erb-loader#readme",
"dependencies": {
"loader-utils": "^2.0.0",
"lodash.defaults": "^4.2.0"
},
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"devDependencies": {
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^29.3.1",
"memory-fs": "^0.4.1",
"webpack": "^5.75.0"
}
}