UNPKG

1.99 kBJSONView Raw
1{
2 "name": "astroturf",
3 "version": "1.0.1",
4 "description": "Extract and process inline CSS literals in JavaScript files",
5 "main": "cjs/index.js",
6 "module": "esm/index.js",
7 "types": "esm/index.d.ts",
8 "publishConfig": {
9 "directory": "lib"
10 },
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/4Catalyzer/astroturf.git"
14 },
15 "bin": {
16 "astroturf": "./cli.js"
17 },
18 "gitHooks": {
19 "pre-commit": "lint-staged"
20 },
21 "lint-staged": {
22 "!(__file_snapshots__/)*.js": [
23 "eslint --fix",
24 "yarn 4c format"
25 ],
26 "README.md": [
27 "doctoc"
28 ]
29 },
30 "prettier": {
31 "printWidth": 79,
32 "singleQuote": true,
33 "trailingComma": "all"
34 },
35 "jest": {
36 "roots": [
37 "<rootDir>/test"
38 ],
39 "setupFilesAfterEnv": [
40 "./test/setup.js"
41 ],
42 "watchPathIgnorePatterns": [
43 "build",
44 "output",
45 "__file_snapshots__"
46 ]
47 },
48 "author": "4Catalyzer",
49 "license": "MIT",
50 "bugs": {
51 "url": "https://github.com/4Catalyzer/astroturf/issues"
52 },
53 "homepage": "https://github.com/4Catalyzer/astroturf#readme",
54 "dependencies": {
55 "@babel/code-frame": "^7.16.0",
56 "@babel/core": "^7.16.5",
57 "@babel/generator": "^7.16.5",
58 "@babel/helper-module-imports": "^7.16.0",
59 "@babel/plugin-transform-react-jsx": "^7.16.5",
60 "@babel/template": "^7.16.0",
61 "@babel/traverse": "^7.16.5",
62 "@babel/types": "^7.16.0",
63 "@modular-css/processor": "^27.0.3",
64 "common-tags": "^1.8.2",
65 "cosmiconfig": "^7.0.1",
66 "css-loader": "^5.1.3",
67 "fast-levenshtein": "^3.0.0",
68 "find-cache-dir": "^3.3.2",
69 "globby": "^11.0.0",
70 "json5": "^2.2.0",
71 "lodash": "^4.17.21",
72 "magic-string": "^0.25.7",
73 "picocolors": "^1.0.0",
74 "postcss": "^8.4.5",
75 "postcss-nested": "^5.0.6",
76 "postcss-scss": "^4.0.2",
77 "resolve": "^1.20.0",
78 "webpack-virtual-modules": "^0.3.2",
79 "yargs": "^17.3.0"
80 },
81 "peerDependencies": {
82 "webpack": ">=5"
83 }
84}