-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 973 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
{
"name": "postcss-table-of-contents",
"version": "0.2.0",
"description": "PostCSS plugin automatically create a table of contents from certain comments in a CSS file.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"table of contents",
"contents",
"index"
],
"author": "Heiko Mamerow <[email protected]>",
"license": "MIT",
"repository": "HeikoMamerow/postcss-table-of-contents",
"bugs": {
"url": "https://github.com/HeikoMamerow/postcss-table-of-contents/issues"
},
"homepage": "https://github.com/HeikoMamerow/postcss-table-of-contents",
"dependencies": {
"postcss": "^5.0.21"
},
"devDependencies": {
"ava": "^0.14.0",
"eslint": "^2.10.0",
"eslint-config-postcss": "^2.0.2"
},
"scripts": {
"test": "ava && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5"
}
}