source: frontend/node_modules/postcss-replace-overflow-wrap/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.4 KB
Line 
1{
2 "name": "postcss-replace-overflow-wrap",
3 "version": "4.0.0",
4 "description": "PostCSS plugin to replace overflow-wrap with word-wrap or optionally retain both declarations.",
5 "keywords": [
6 "postcss",
7 "css",
8 "postcss-plugin",
9 "overflow-wrap",
10 "word-wrap"
11 ],
12 "author": "Matthias Müller <MattDiMu@users.noreply.github.com>",
13 "license": "MIT",
14 "repository": "MattDiMu/postcss-replace-overflow-wrap",
15 "bugs": {
16 "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap/issues"
17 },
18 "homepage": "https://github.com/MattDiMu/postcss-replace-overflow-wrap",
19 "files": [
20 "index.js"
21 ],
22 "dependencies": {},
23 "devDependencies": {
24 "ava": "^0.25.0",
25 "eslint": "^5.3.0",
26 "eslint-config-logux": "^24.0.0",
27 "eslint-config-postcss": "^3.0.3",
28 "eslint-config-standard": "^11.0.0",
29 "eslint-plugin-es5": "^1.3.1",
30 "eslint-plugin-import": "^2.13.0",
31 "eslint-plugin-jest": "^21.20.1",
32 "eslint-plugin-node": "^7.0.1",
33 "eslint-plugin-promise": "^3.8.0",
34 "eslint-plugin-security": "^1.4.0",
35 "eslint-plugin-standard": "^3.1.0",
36 "postcss": "^8.0.3"
37 },
38 "peerDependencies": {
39 "postcss": "^8.0.3"
40 },
41 "scripts": {
42 "test": "ava && eslint *.js"
43 },
44 "eslintConfig": {
45 "extends": "eslint-config-postcss/es5",
46 "rules": {
47 "max-len": 0,
48 "es5/no-modules": false,
49 "indent": [
50 "warn",
51 4
52 ],
53 "es5/no-arrow-functions": 0
54 }
55 }
56}
Note: See TracBrowser for help on using the repository browser.