-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.2 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
{
"name": "jest-erb-transformer",
"version": "1.2.12",
"description": "Jest transformer for Embedded Ruby (`.erb`) files in Ruby projects",
"main": "index.js",
"packageManager": "[email protected]",
"scripts": {
"test": "jest --no-cache --coverage ./test.js",
"e2e": "jest --no-cache --config ./e2e/jest.config.json",
"lint": "eslint index.js test.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpcwood/jest-erb-transformer.git"
},
"keywords": [
"erb",
"erubi",
"transformer",
"jest",
"ruby",
"rails"
],
"author": "Chris Wood <[email protected]> (https://github.com/cpcwood)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cpcwood/jest-erb-transformer/issues"
},
"homepage": "https://github.com/cpcwood/jest-erb-transformer#readme",
"dependencies": {
"@babel/core": "^7.22.15",
"babel-jest": "^29.6.4"
},
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.4"
}
}