-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
35 lines (35 loc) · 862 Bytes
/
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
{
"name": "postcss-increase-specificity",
"version": "0.6.0",
"description": "PostCSS plugin to increase the specificity of your selectors",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"specificity"
],
"author": "Eric Eastwood <[email protected]> (http://ericeastwood.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MadLittleMods/postcss-increase-specificity.git"
},
"main": "index.js",
"scripts": {
"test": "mocha",
"mocha": "mocha"
},
"dependencies": {
"escape-string-regexp": "^1.0.5",
"object-assign": "^3.0.0",
"postcss": "^5.1.2",
"string.prototype.repeat": "^0.2.0"
},
"devDependencies": {
"bluebird": "^2.9.34",
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"clean-css": "^3.3.7",
"mocha": "^2.2.5"
}
}