source: trip-planner-front/node_modules/postcss-color-hex-alpha/package.json@ 188ee53

Last change on this file since 188ee53 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-color-hex-alpha",
3 "version": "5.0.3",
4 "description": "Use 4 & 8 character hex color notation in CSS",
5 "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6 "contributors": [
7 "Maxime Thirouin"
8 ],
9 "license": "MIT",
10 "repository": "postcss/postcss-color-hex-alpha",
11 "homepage": "https://github.com/postcss/postcss-color-hex-alpha#readme",
12 "bugs": "https://github.com/postcss/postcss-color-hex-alpha/issues",
13 "main": "index.cjs.js",
14 "module": "index.es.mjs",
15 "files": [
16 "index.cjs.js",
17 "index.cjs.js.map",
18 "index.es.mjs",
19 "index.es.mjs.map"
20 ],
21 "scripts": {
22 "prepublishOnly": "npm test",
23 "pretest": "rollup -c .rollup.js --silent",
24 "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
25 "test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
26 "test:tape": "postcss-tape"
27 },
28 "engines": {
29 "node": ">=6.0.0"
30 },
31 "dependencies": {
32 "postcss": "^7.0.14",
33 "postcss-values-parser": "^2.0.1"
34 },
35 "devDependencies": {
36 "@babel/core": "^7.4.0",
37 "@babel/plugin-syntax-dynamic-import": "^7.2.0",
38 "@babel/preset-env": "^7.4.2",
39 "babel-eslint": "^10.0.1",
40 "eslint": "^5.16.0",
41 "eslint-config-dev": "^2.0.0",
42 "postcss-tape": "^4.0.0",
43 "pre-commit": "^1.2.2",
44 "rollup": "^1.7.4",
45 "rollup-plugin-babel": "^4.3.2"
46 },
47 "eslintConfig": {
48 "extends": "dev",
49 "parser": "babel-eslint"
50 },
51 "keywords": [
52 "postcss",
53 "css",
54 "postcss-plugin",
55 "color",
56 "hex",
57 "alpha",
58 "transparent",
59 "transparency",
60 "4-digit",
61 "8-digit",
62 "w3c",
63 "csswg",
64 "specification",
65 "spec"
66 ]
67}
Note: See TracBrowser for help on using the repository browser.