|
4 | 4 | "description": "Use logical properties and values in CSS",
|
5 | 5 | "author": "Jonathan Neal <jonathantneal@hotmail.com>",
|
6 | 6 | "license": "CC0-1.0",
|
7 |
| - "repository": "csstools/postcss-logical", |
8 |
| - "homepage": "https://github.com/csstools/postcss-logical#readme", |
9 |
| - "bugs": "https://github.com/csstools/postcss-logical/issues", |
10 |
| - "main": "index.cjs.js", |
11 |
| - "module": "index.esm.mjs", |
| 7 | + "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical#readme", |
| 8 | + "bugs": "https://github.com/csstools/postcss-plugins/issues", |
| 9 | + "main": "dist/index.cjs", |
| 10 | + "module": "dist/index.mjs", |
12 | 11 | "files": [
|
13 |
| - "index.cjs.js", |
14 |
| - "index.cjs.js.map", |
15 |
| - "index.esm.mjs", |
16 |
| - "index.esm.mjs.map" |
| 12 | + "CHANGELOG.md", |
| 13 | + "INSTALL.md", |
| 14 | + "LICENSE.md", |
| 15 | + "README.md", |
| 16 | + "dist" |
17 | 17 | ],
|
| 18 | + "bin": { |
| 19 | + "postcss-logical": "dist/cli.mjs" |
| 20 | + }, |
18 | 21 | "scripts": {
|
19 |
| - "build": "rollup --config .rollup.js --silent", |
20 |
| - "prepublishOnly": "npm test", |
21 |
| - "pretest:tape": "npm run build", |
22 |
| - "test": "npm run test:js && npm run test:tape", |
23 |
| - "test:js": "eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet", |
24 |
| - "test:tape": "postcss-tape" |
| 22 | + "prepublishOnly": "npm run build && npm run test", |
| 23 | + "lint": "eslint src/**/*.js", |
| 24 | + "test": "postcss-tape", |
| 25 | + "build": "rollup -c ../../rollup/default.js", |
| 26 | + "stryker": "stryker run --logLevel error" |
25 | 27 | },
|
26 | 28 | "engines": {
|
27 |
| - "node": ">=12" |
28 |
| - }, |
29 |
| - "peerDependencies": { |
30 |
| - "postcss": "^8.3" |
| 29 | + "node": "^12 || ^14 || >=16" |
31 | 30 | },
|
32 | 31 | "devDependencies": {
|
33 |
| - "@babel/core": "7.15.5", |
34 |
| - "@babel/preset-env": "7.15.6", |
35 |
| - "@rollup/plugin-babel": "5.3.0", |
36 |
| - "eslint": "7.32.0", |
37 | 32 | "postcss": "8.3.6",
|
38 |
| - "postcss-tape": "6.0.1", |
39 |
| - "pre-commit": "1.2.2", |
40 |
| - "rollup": "2.56.3" |
| 33 | + "postcss-tape": "6.0.1" |
41 | 34 | },
|
42 |
| - "eslintConfig": { |
43 |
| - "env": { |
44 |
| - "browser": true, |
45 |
| - "es6": true, |
46 |
| - "node": true |
47 |
| - }, |
48 |
| - "extends": "eslint:recommended", |
49 |
| - "parserOptions": { |
50 |
| - "ecmaVersion": 2020, |
51 |
| - "impliedStrict": true, |
52 |
| - "sourceType": "module" |
53 |
| - }, |
54 |
| - "root": true |
| 35 | + "peerDependencies": { |
| 36 | + "postcss": "^8.3" |
55 | 37 | },
|
56 | 38 | "keywords": [
|
57 | 39 | "postcss",
|
|
80 | 62 | "padding",
|
81 | 63 | "size",
|
82 | 64 | "text"
|
83 |
| - ] |
| 65 | + ], |
| 66 | + "repository": { |
| 67 | + "type": "git", |
| 68 | + "url": "https://github.com/csstools/postcss-plugins.git", |
| 69 | + "directory": "plugins/postcss-logical" |
| 70 | + } |
84 | 71 | }
|
0 commit comments