-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "postcss-mixins-css-grid",
"version": "5.0.4",
"description": "A CSS Grid mixin for the PostCSS mixins plugin with IE11 support.",
"main": "lib/index.js",
"watch": {
"build": "src/**/*.js"
},
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean & babel src -d lib --ignore __tests__",
"watch": "npm-watch build",
"test": "jest"
},
"keywords": [
"postcss",
"mixin",
"css grid",
"grid",
"ie11"
],
"author": "Marco Trevisani <marco.trevisani81@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/trevonerd/postcss-mixins-css-grid"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"npm-watch": "^0.6.0",
"regenerator-runtime": "^0.13.3"
},
"dependencies": {}
}