UNPKG

2.38 kBJSONView Raw
1{
2 "name": "gatsby-plugin-purgecss",
3 "description": "Gatsby plugin for purgecss. Removes unused css/sass/less/stylus from files and modules. Supports Tailwindcss, Bootstrap, Bulma etc.",
4 "version": "6.1.2",
5 "main": "index.js",
6 "license": "MIT",
7 "author": "Ananto Ghosh",
8 "devDependencies": {
9 "@release-it/conventional-changelog": "^4.2.2",
10 "@types/fs-extra": "^9.0.13",
11 "@types/jest": "^27.4.1",
12 "@types/loader-utils": "^2.0.3",
13 "@types/node": "^16.11.26",
14 "@types/webpack": "^5.28.0",
15 "@typescript-eslint/eslint-plugin": "^5.18.0",
16 "coveralls": "^3.1.1",
17 "eslint": "^8.13.0",
18 "eslint-config-good-code": "^1.1.0",
19 "eslint-plugin-sonarjs": "^0.13.0",
20 "eslint-plugin-unicorn": "^42.0.0",
21 "execa": "^6.1.0",
22 "gatsby": "^4.11.2",
23 "jest": "^27.5.1",
24 "release-it": "^14.14.1",
25 "ts-jest": "^27.1.4",
26 "ts-node": "^10.7.0",
27 "typescript": "^4.6.3"
28 },
29 "dependencies": {
30 "fs-extra": "^10.0.1",
31 "loader-utils": "^3.2.0",
32 "merge-anything": "^5.0.2",
33 "purgecss": "^4.1.3"
34 },
35 "peerDependencies": {
36 "gatsby": "^2.0.0 || ^3.0.0 || ^4.0.0"
37 },
38 "scripts": {
39 "build": "tsc",
40 "build:local": "tsc --outDir plugins/gatsby-plugin-purgecss",
41 "test": "ts-node scripts/test_ci.ts --project scripts/tsconfig.scripts.json",
42 "test:local": "ts-node scripts/test_local.ts --project scripts/tsconfig.scripts.json",
43 "test:unit": "jest unit",
44 "test:build": "jest build",
45 "jest:coverage": "jest --ci --coverage",
46 "release": "release-it"
47 },
48 "files": [
49 "index.js",
50 "debug.js",
51 "gatsby-node.js",
52 "loader.js",
53 "paths.js",
54 "shared.js",
55 "types.js",
56 "utils.js"
57 ],
58 "repository": {
59 "type": "git",
60 "url": "git+https://github.com/anantoghosh/gatsby-plugin-purgecss.git"
61 },
62 "funding": [
63 {
64 "type": "individual",
65 "url": "https://ko-fi.com/anantoghosh"
66 },
67 {
68 "type": "individual",
69 "url": "https://pages.razorpay.com/ananto"
70 }
71 ],
72 "bugs": {
73 "url": "https://github.com/anantoghosh/gatsby-plugin-purgecss/issues"
74 },
75 "homepage": "https://github.com/anantoghosh/gatsby-plugin-purgecss#readme",
76 "keywords": [
77 "gatsby",
78 "gatsby-plugin",
79 "css",
80 "sass",
81 "scss",
82 "stylus",
83 "less",
84 "optimize",
85 "clean",
86 "purgecss",
87 "purify",
88 "purifycss"
89 ]
90}