-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.24 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
{
"name": "postcss-transform-css-var",
"version": "1.0.0",
"description": "A PostCSS plugin to convert CSS variables to Less variables",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/luckymore/postcss-transform-css-var.git",
"homepage": "https://github.com/luckymore/postcss-transform-css-var#readme",
"bugs": "https://github.com/luckymore/postcss-transform-css-var/issues",
"keywords": [
"postcss",
"postcss-plugin",
"preprocessor",
"plugin",
"css",
"style",
"variable",
"less"
],
"author": "luckymore <flyflydogdog@gmail.com>",
"contributors": [
"luckymore <flyflydogdog@gmail.com>"
],
"maintainers": [
"luckymore <flyflydogdog@gmail.com>"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "jest"
},
"eslintConfig": {
"extends": "standard",
"env": {
"es6": true,
"jest": true
}
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"dependencies": {
"postcss": "^8.4.14",
"postcss-less": "^6.0.0",
"postcss-plugin-utilities": "^2.2.9"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.18.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^22.4.2"
}
}