-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 874 Bytes
/
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
{
"name": "postcss-define-function",
"version": "0.1.2",
"description": "PostCSS plugin : A plugin to implement sass @function directive",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"define",
"function",
"directive",
"sass"
],
"author": "mcattx <mcattx@gmail.com>",
"license": "MIT",
"repository": "titancat/postcss-define-function",
"bugs": {
"url": "https://github.com/titancat/postcss-define-function/issues"
},
"homepage": "https://github.com/titancat/postcss-define-function",
"dependencies": {
"postcss": "^5.2.6"
},
"devDependencies": {
"ava": "^0.17.0",
"eslint": "^4.18.2",
"eslint-config-postcss": "^2.0.2"
},
"scripts": {
"test": "ava test/test.js",
"testCase": "node ./test/cases/testCase.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5"
}
}