- commit
- 4b2a9cd395f6869c33d6fafbe40c24afb953d2ec
- parent
- 2f88c10b8a1d7d774d7f2a050c7ff64afbf387dd
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2017-02-17 07:19
add package.json
Diffstat
| A | package.json | 29 | +++++++++++++++++++++++++++++ |
1 files changed, 29 insertions, 0 deletions
diff --git a/package.json b/package.json
@@ -0,0 +1,29 @@
-1 1 {
-1 2 "name": "stylelint-selector-pattern",
-1 3 "version": "0.0.0",
-1 4 "description": "A stylelint plugin checks selectors with a regular expression",
-1 5 "main": "index.js",
-1 6 "repository": {
-1 7 "type": "git",
-1 8 "url": "git+https://github.com/xi/stylelint-selector-pattern.git"
-1 9 },
-1 10 "files": [
-1 11 "index.js"
-1 12 ],
-1 13 "keywords": [
-1 14 "stylelint",
-1 15 "stylelint-plugin",
-1 16 "css",
-1 17 "nesting",
-1 18 "linter",
-1 19 "bem"
-1 20 ],
-1 21 "author": "Tobias Bengfort <tobias.bengfort@posteo.de>",
-1 22 "license": "MIT",
-1 23 "dependencies": {
-1 24 "lodash": "^4.2.0",
-1 25 "postcss-resolve-nested-selector": "^0.1.1",
-1 26 "stylelint": "^7.8.0"
-1 27 },
-1 28 "devDependencies": {}
-1 29 }