-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "postcss-variables-prefixer",
"version": "1.2.0",
"description": "postcss plugin to prefix all css custom properties",
"main": "lib/prefixer.js",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"postcss": "^8.2.13"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"husky": "^8.0.0",
"jest": "^28.1.0",
"postcss": "^8.4.14"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint ./lib",
"prepare": "husky install"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"css",
"postcss",
"postcss-plugin",
"postcss-prefixer"
],
"directories": {
"lib": "./lib",
"test": "./test"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ryuran/postcss-variables-prefixer.git"
},
"bugs": {
"url": "https://github.com/ryuran/postcss-variables-prefixer/issues"
},
"homepage": "https://github.com/ryuran/postcss-variables-prefixer#readme"
}