This repository has been archived by the owner on Mar 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
57 lines (57 loc) · 1.53 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
56
57
{
"name": "postcss-conditionals",
"version": "3.0.0",
"description": "PostCSS plugin that enables @if statements in your CSS",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"conditional",
"statement",
"if-statements",
"if-statement",
"if",
"else"
],
"author": "Andy Jansson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andyjansson/postcss-conditionals.git"
},
"dependencies": {
"css-color-converter": "^1.0.2",
"css-unit-converter": "^1.0.0",
"postcss": "^6.0.1"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.18.0",
"cross-env": "^3.1.4",
"del-cli": "^0.2.1",
"eslint": "^3.12.2",
"eslint-config-i-am-meticulous": "^6.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"jison": "^0.4.17"
},
"scripts": {
"prepublish": "npm run build && del-cli dist/__tests__",
"build": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist && jison parser.jison -o dist/lib/parser.js",
"pretest": "eslint src && npm run build",
"test": "ava dist/__tests__/"
},
"main": "dist/index.js",
"files": [
"dist"
],
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint-config-i-am-meticulous"
}
}