source: trip-planner-front/node_modules/postcss-custom-selectors/package.json@ 6c1585f

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

initial commit

  • Property mode set to 100644
File size: 1.6 KB
Line 
1{
2 "name": "postcss-custom-selectors",
3 "version": "5.1.2",
4 "description": "Use Custom Selectors in CSS",
5 "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6 "contributors": [
7 "yisi",
8 "Maxime Thirouin"
9 ],
10 "license": "MIT",
11 "repository": "postcss/postcss-custom-selectors",
12 "homepage": "https://github.com/postcss/postcss-custom-selectors#readme",
13 "bugs": "https://github.com/postcss/postcss-custom-selectors/issues",
14 "main": "index.cjs.js",
15 "module": "index.es.mjs",
16 "files": [
17 "index.cjs.js",
18 "index.cjs.js.map",
19 "index.es.mjs",
20 "index.es.mjs.map"
21 ],
22 "scripts": {
23 "prepublishOnly": "npm test",
24 "pretest": "rollup -c .rollup.js --silent",
25 "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
26 "test:js": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
27 "test:tape": "postcss-tape"
28 },
29 "engines": {
30 "node": ">=6.0.0"
31 },
32 "dependencies": {
33 "postcss": "^7.0.2",
34 "postcss-selector-parser": "^5.0.0-rc.3"
35 },
36 "devDependencies": {
37 "@babel/core": "^7.1.0",
38 "@babel/plugin-syntax-dynamic-import": "^7.0.0",
39 "@babel/preset-env": "^7.1.0",
40 "babel-eslint": "^9.0.0",
41 "eslint": "^5.6.0",
42 "eslint-config-dev": "^2.0.0",
43 "postcss-tape": "^2.2.0",
44 "pre-commit": "^1.2.2",
45 "rollup": "^0.66.1",
46 "rollup-plugin-babel": "^4.0.3"
47 },
48 "eslintConfig": {
49 "extends": "dev",
50 "parser": "babel-eslint"
51 },
52 "keywords": [
53 "postcss",
54 "css",
55 "postcss-plugin",
56 "custom",
57 "selectors",
58 "w3c",
59 "csswg",
60 "extensions",
61 "declarative",
62 "rule",
63 "atrule",
64 "at-rule",
65 "specification"
66 ]
67}
Note: See TracBrowser for help on using the repository browser.