-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 2.21 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": "simplecov-tailwind",
"version": "2.2.0",
"description": "HTML tailwind Design View for Simplecov formatter",
"scripts": {
"build": "npm-run-all build:*",
"build:css": "npx tailwindcss -i dist/app.css -o public/application.css --minify",
"build:js": "esbuild --bundle dist/app.js --outfile=public/application.js --minify",
"test:start": "bundle exec rake test",
"test:open": "open coverage/index.html",
"test": "npm-run-all test:*",
"lint": "./bin/lint",
"lint:markdown": "markdownlint CHANGELOG.md README.md .github/**/*.md -c .markdownlint.yml",
"lint:ruby": "rubocop",
"lint:erb": "bundle exec erblint --lint-all",
"lint:javascript": "eslint dist",
"gem:build": "gem build simplecov-tailwindcss.gemspec",
"format": "prettier './**/*.{css,js,json,yml,md,erb}' -l",
"format:check": "prettier './**/*.{css,js,json,yml,md,erb}' -c",
"format:fix": "prettier './**/*.{css,js,json,yml,md,erb}' -w",
"full": "yarn build & yarn gem:build & yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/chiefpansancolt/simplecov-tailwindcss"
},
"keywords": [
"simplecov",
"simplecov-formatter",
"simplecov-tailwind"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/chiefpansancolt/simplecov-tailwindcss/issues"
},
"author": {
"name": "Christopher Pezza",
"email": "[email protected]"
},
"contributors": [
{
"name": "Christopher Pezza",
"email": "[email protected]",
"url": "https://chiefpansancolt.dev"
}
],
"homepage": "https://simplecov-tailwind.chiefpansancolt.dev/",
"babel": {},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@hotwired/stimulus": "^3.2.2",
"@prettier/plugin-ruby": "^4.0.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"esbuild": "^0.19.7",
"eslint": "^8.54.0",
"markdownlint": "^0.32.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prettier-plugin-erb": "^0.4.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwindcss": "^3.3.5",
"timeago.js": "^4.0.2"
}
}