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 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
58
59
60
61
62
63
64
{
"name": "postcss-sassy-mixins",
"version": "3.0.0-beta.0",
"description": "PostCSS plugin for sass-like mixins",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"mixins",
"sass"
],
"main": "dist/index.js",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"prepublish": "npm run build && del-cli dist/__tests__",
"build": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist",
"pretest": "eslint src && npm run build",
"test": "nyc ava src/__tests__/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andyjansson/postcss-sassy-mixins.git"
},
"author": "Andy Jansson",
"license": "MIT",
"bugs": {
"url": "https://github.com/andyjansson/postcss-sassy-mixins/issues"
},
"homepage": "https://github.com/andyjansson/postcss-sassy-mixins#readme",
"dependencies": {
"glob": "^7.1.2",
"postcss": "^6.0.9",
"postcss-simple-vars": "^4.0.0"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"cross-env": "^5.0.5",
"del-cli": "^1.1.0",
"eslint": "^4.4.1",
"eslint-config-i-am-meticulous": "^6.0.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"nyc": "^11.1.0"
},
"ava": {
"require": "babel-register"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint-config-i-am-meticulous",
"rules": {
"no-bitwise": "off"
}
}
}