-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.85 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
{
"name": "postcss-better-colors",
"version": "2.0.0",
"description": "PostCSS plugin to transform CSS2 color keywords to a custom palette",
"keywords": [
"css",
"postcss",
"postcss-plugins",
"color",
"colour",
"palette"
],
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.0.0",
"npm": ">=6.0.0"
},
"homepage": "https://github.com/sebastian-software/postcss-better-colors",
"bugs": "https://github.com/sebastian-software/postcss-better-colors/issues",
"license": "Apache-2.0",
"author": {
"name": "Sebastian Software",
"email": "[email protected]",
"url": "https://www.sebastian-software.de"
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/sebastian-software/postcss-better-colors.git"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"test": "jest --coverage",
"test:coverage": "jest --coverage",
"prepare": "rimraf lib && preppy",
"lint": "eslint .",
"format": "prettier-eslint '**/*.js'",
"release": "release-it --github.release --npm.publish --non-interactive",
"release:minor": "release-it --github.release --npm.publish --non-interactive --increment minor",
"release:major": "release-it --github.release --npm.publish --non-interactive --increment major"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"core-js": "^3.6.4",
"postcss": "^7.0.27",
"postcss-message-helpers": "^2.0.0",
"webcolors": "^2.0.1"
},
"devDependencies": {
"@effective/eslint-config": "^2.2.0",
"@effective/prettier-eslint": "^1.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.2.4",
"babel-preset-edge": "^5.5.1",
"eslint": "^6.8.0",
"jest": "^25.2.4",
"preppy": "^10.1.0",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}