-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "postcss-colors",
"version": "0.0.3",
"description": "PostCSS plugin for colors management",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"color",
"background-color",
"border-color",
"palette"
],
"author": "plesiecki",
"license": "MIT",
"repository": "plesiecki/postcss-colors",
"bugs": {
"url": "https://github.com/plesiecki/postcss-colors/issues"
},
"homepage": "https://github.com/plesiecki/postcss-colors",
"dependencies": {
"postcss": "^5.0.16"
},
"devDependencies": {
"ava": "^0.12.0",
"babel-cli": "^6.5.1",
"babel-plugin-array-includes": "^2.0.3",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"npm-run-all": "^1.5.1",
"postcss-message-helpers": "^2.0.0",
"tap-diff": "^0.1.1",
"xo": "^0.12.1"
},
"scripts": {
"lint": "xo src/*",
"test": "ava --tap | tap-diff",
"build": "babel src -o index.js",
"prepublish": "npm-run-all --parallel lint test build"
},
"xo": {
"space": 4,
"esnext": true
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"array-includes"
]
}
}