-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "postcss-tidy-columns",
"version": "0.4.0",
"description": "PostCSS plugin to manage column and margin alignment.",
"keywords": [
"postcss",
"postcss-plugin",
"css",
"columns",
"grid",
"flexbox"
],
"author": "Ryan Domingue <[email protected]>",
"license": "MIT",
"repository": "goodguyry/postcss-tidy-columns",
"bugs": {
"url": "https://github.com/goodguyry/postcss-tidy-columns/issues"
},
"homepage": "https://github.com/goodguyry/postcss-tidy-columns",
"dependencies": {
"autoprefixer": "^9.5.1",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"postcss": "^6.0.22",
"postcss-units": "^1.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.0",
"jest": "^24.7.1",
"jest-cli": "^24.7.1"
},
"scripts": {
"test": "jest",
"watch": "jest --watchAll",
"watch:verbose": "jest --watchAll --verbose",
"build:css": "npm test && node docs/_bin/build.js",
"watch:css": "nodemon -e scss -x node docs/_bin/build.js"
},
"jest": {
"testEnvironment": "node"
},
"files": [
"/*.js",
"/lib/*.js",
"/src/*.js"
]
}