Skip to content

Commit 88981d1

Browse files
neurocracy/postcss-easing-gradients-3.0.2 (#2371)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4388625 commit 88981d1

1 file changed

Lines changed: 133 additions & 0 deletions

File tree

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
{
2+
"name": "@neurocracy/postcss-easing-gradients",
3+
"version": "3.0.2",
4+
"engines": {
5+
"node": ">=10.0.0"
6+
},
7+
"description": "PostCSS plugin to create smooth linear-gradients that approximate easing functions.",
8+
"scripts": {
9+
"test": "jest && eslint *.js",
10+
"lintfix": "eslint --fix --ext .js --ignore-path .gitignore ."
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://gitlab.com/neurocracy/front-end/postcss-easing-gradients.git"
15+
},
16+
"keywords": [
17+
"postcss",
18+
"postcss-plugin",
19+
"css",
20+
"gradients"
21+
],
22+
"author": {
23+
"name": "Andreas Larsen",
24+
"email": "[email protected]",
25+
"url": "https://larsenwork.com"
26+
},
27+
"license": "MIT",
28+
"bugs": {
29+
"url": "https://gitlab.com/neurocracy/front-end/postcss-easing-gradients/-/issues"
30+
},
31+
"homepage": "https://gitlab.com/neurocracy/front-end/postcss-easing-gradients",
32+
"dependencies": {
33+
"chroma-js": "^1.3.7",
34+
"easing-coordinates": "^2.0.0",
35+
"postcss-value-parser": "^3.3.0"
36+
},
37+
"devDependencies": {
38+
"eslint": "^5.5.0",
39+
"eslint-config-logux": "^25.0.1",
40+
"eslint-config-postcss": "^3.0.6",
41+
"eslint-config-prettier": "^3.0.1",
42+
"eslint-config-standard": "^12.0.0",
43+
"eslint-plugin-import": "^2.14.0",
44+
"eslint-plugin-jest": "^21.22.0",
45+
"eslint-plugin-node": "^7.0.1",
46+
"eslint-plugin-prettier": "^2.6.2",
47+
"eslint-plugin-promise": "^4.0.0",
48+
"eslint-plugin-security": "^1.4.0",
49+
"eslint-plugin-standard": "^4.0.0",
50+
"jest": "^29.7.0",
51+
"postcss": "^8.1.2",
52+
"prettier": "^1.14.2",
53+
"prettier-eslint": "^16.3.0"
54+
},
55+
"peerDependencies": {
56+
"postcss": "^8.1.2"
57+
},
58+
"eslintConfig": {
59+
"plugins": [
60+
"prettier"
61+
],
62+
"env": {
63+
"jest": true
64+
},
65+
"parserOptions": {
66+
"ecmaVersion": 6
67+
},
68+
"extends": [
69+
"plugin:prettier/recommended"
70+
],
71+
"rules": {
72+
"prettier/prettier": [
73+
"error",
74+
{
75+
"singleQuote": true,
76+
"trailingComma": "es5",
77+
"parser": "flow"
78+
}
79+
],
80+
"max-len": [
81+
"error",
82+
120
83+
],
84+
"func-style": [
85+
"error",
86+
"declaration",
87+
{
88+
"allowArrowFunctions": true
89+
}
90+
]
91+
}
92+
},
93+
"prettier": {
94+
"semi": false,
95+
"singleQuote": true,
96+
"trailingComma": "es5",
97+
"printWidth": 100
98+
},
99+
"_id": "@neurocracy/[email protected]",
100+
"gitHead": "cb862c4b88a6976eac73f94fb7d1c8f9314ac55d",
101+
"_nodeVersion": "20.18.0",
102+
"_npmVersion": "10.8.2",
103+
"dist": {
104+
"integrity": "sha512-YjmlHmT7Cclp2oNfmwwmxmWcghtusNJMsbxIkcxbO+ZxRY1GhruvR7x4a3Y3xmBgjcPM14VfRB6r3JZx3huRRA==",
105+
"shasum": "a73d6cb0e704dca1e0693baefc9a3b1cdcc03061",
106+
"tarball": "https://registry.npmjs.org/@neurocracy/postcss-easing-gradients/-/postcss-easing-gradients-3.0.2.tgz",
107+
"fileCount": 7,
108+
"unpackedSize": 28480,
109+
"signatures": [
110+
{
111+
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
112+
"sig": "MEQCIEIL+tY2gj8YUAB3eWYHkjkRkUW9HAhVLvoMBA+J+r2OAiB/RTluG//kDVCNaivCkH/B/k/9V8VFFqHiVEJQsphkzA=="
113+
}
114+
]
115+
},
116+
"_npmUser": {
117+
"name": "ambient.impact",
118+
"email": "[email protected]"
119+
},
120+
"directories": {},
121+
"maintainers": [
122+
{
123+
"name": "ambient.impact",
124+
"email": "[email protected]"
125+
}
126+
],
127+
"_npmOperationalInternal": {
128+
"host": "s3://npm-registry-packages",
129+
"tmp": "tmp/postcss-easing-gradients_3.0.2_1729283427606_0.029073167639554365"
130+
},
131+
"_hasShrinkwrap": false,
132+
"_time": "2024-10-18T20:30:27.851Z"
133+
}

0 commit comments

Comments
 (0)