This repository has been archived by the owner on Feb 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 1.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "postcss-color-rebeccapurple",
"version": "7.0.0",
"description": "Use the rebeccapurple color keyword in CSS",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"contributors": [
"Maxime Thirouin"
],
"license": "CC0-1.0",
"repository": "postcss/postcss-color-rebeccapurple",
"homepage": "https://github.com/postcss/postcss-color-rebeccapurple#readme",
"bugs": "https://github.com/postcss/postcss-color-rebeccapurple/issues",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.mjs",
"files": [
"dist"
],
"scripts": {
"build": "npx rollup -c .rollup.js",
"build:watch": "npx rollup -c .rollup.js --watch",
"lint": "npx eslint --cache src",
"lint:fix": "npx eslint --cache --fix",
"pretest": "npm install && npm run build",
"test": "npm run lint && npm run tape",
"tape": "npx postcss-tape",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"postcss": "^8.3"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.6",
"@rollup/plugin-babel": "5.3.0",
"eslint": "7.32.0",
"postcss": "8.3.6",
"postcss-tape": "6.0.1",
"pre-commit": "1.2.2",
"rollup": "2.56.3"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"extends": "eslint:recommended"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"becca",
"color",
"colors",
"csswg",
"eric",
"meyer",
"purple",
"rebecca",
"rgb",
"syntax",
"w3c"
]
}