source: trip-planner-front/node_modules/postcss-dir-pseudo-class/package.json@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.7 KB
Line 
1{
2 "name": "postcss-dir-pseudo-class",
3 "version": "5.0.0",
4 "description": "Use the :dir pseudo-class in CSS",
5 "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6 "license": "CC0-1.0",
7 "repository": "jonathantneal/postcss-dir-pseudo-class",
8 "homepage": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme",
9 "bugs": "https://github.com/jonathantneal/postcss-dir-pseudo-class/issues",
10 "main": "index.cjs.js",
11 "module": "index.es.mjs",
12 "files": [
13 "index.cjs.js",
14 "index.cjs.js.map",
15 "index.es.mjs",
16 "index.es.mjs.map"
17 ],
18 "scripts": {
19 "prepublishOnly": "npm test",
20 "pretest": "rollup -c .rollup.js --silent",
21 "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
22 "test:ec": "echint --ignore index.*.js test",
23 "test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
24 "test:tape": "postcss-tape"
25 },
26 "engines": {
27 "node": ">=4.0.0"
28 },
29 "dependencies": {
30 "postcss": "^7.0.2",
31 "postcss-selector-parser": "^5.0.0-rc.3"
32 },
33 "devDependencies": {
34 "@babel/core": "^7.0.0",
35 "@babel/preset-env": "^7.0.0",
36 "babel-eslint": "^9.0.0",
37 "eslint": "^5.6.0",
38 "eslint-config-dev": "^2.0.0",
39 "postcss-tape": "^2.2.0",
40 "pre-commit": "^1.2.2",
41 "rollup": "^0.66.0",
42 "rollup-plugin-babel": "^4.0.1"
43 },
44 "eslintConfig": {
45 "extends": "dev",
46 "parser": "babel-eslint",
47 "rules": {
48 "complexity": [
49 "error",
50 {
51 "max": 30
52 }
53 ]
54 }
55 },
56 "keywords": [
57 "postcss",
58 "css",
59 "postcss-plugin",
60 "directionality",
61 "directions",
62 "selector",
63 "attribute",
64 "polyfill",
65 "left",
66 "left-to-right",
67 "ltr",
68 "right",
69 "right-to-left",
70 "rtl"
71 ]
72}
Note: See TracBrowser for help on using the repository browser.