-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 901 Bytes
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
{
"name": "postcss-comment-annotation",
"version": "1.1.0",
"description": "PostCSS plugin for annotating comments",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"comments",
"annotation"
],
"author": "Matthew Ferry <hello@matthew-ferry.com>",
"license": "MIT",
"repository": "matthewferry/postcss-comment-annotation",
"files": [
"index.js"
],
"bugs": {
"url": "https://github.com/matthewferry/postcss-comment-annotation/issues"
},
"homepage": "https://github.com/matthewferry/postcss-comment-annotation",
"dependencies": {
"postcss": "^6.0.1"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^20.0.0"
},
"scripts": {
"lint": "eslint *.js",
"test": "jest"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
}
}
}