forked from davidtheclark/list-selectors
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "list-selectors",
"author": {
"name": "David Clark",
"email": "[email protected]",
"url": "http://davidtheclark.com"
},
"bin": {
"list-selectors": "./bin.js"
},
"license": "MIT",
"version": "2.0.0",
"description": "List the selectors used in your CSS. Use as a standalone function, CLI, or PostCSS plugin.",
"homepage": "https://github.com/davidtheclark/list-selectors",
"repository": {
"type": "git",
"url": "https://github.com/davidtheclark/list-selectors.git"
},
"keywords": [
"css",
"analytics",
"postcss",
"postcss-plugin"
],
"files": [
"lib/*.js",
"index.js",
"bin.js",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"main": "index.js",
"scripts": {
"lint": "eslint index.js test/index.js",
"test": "npm run lint && tape test"
},
"devDependencies": {
"eslint": "1.2.1",
"tape": "4.2.0"
},
"dependencies": {
"chalk": "^1.0",
"globby": "^2.0",
"lodash": "^3.0",
"minimist": "^1.0",
"postcss": "^5.0.2",
"postcss-reporter": "^1.0",
"postcss-selector-parser": "^1.1.2",
"request": "^2.0"
}
}