UNPKG

958 BJSONView Raw
1{
2 "name": "stylelint-config-standard",
3 "version": "6.0.0",
4 "description": "Standard shareable config for stylelint",
5 "keywords": [
6 "stylelint",
7 "stylelint-config",
8 "standard"
9 ],
10 "author": "Stylelint",
11 "license": "MIT",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/stylelint/stylelint-config-standard.git"
15 },
16 "main": "index.js",
17 "files": [
18 "index.js"
19 ],
20 "devDependencies": {
21 "ava": "^0.14.0",
22 "eslint": "^2.2.0",
23 "eslint-config-stylelint": "^1.0.0",
24 "npmpub": "^3.0.1",
25 "stylelint": "^6.0.0"
26 },
27 "peerDependencies": {
28 "stylelint": "^6.0.0"
29 },
30 "scripts": {
31 "ava": "ava --verbose \"__tests__/**/*.js\"",
32 "lint": "eslint . --ignore-path .gitignore",
33 "pretest": "npm run lint",
34 "release": "npmpub",
35 "test": "npm run ava"
36 },
37 "babel": {
38 "presets": [
39 "es2015"
40 ]
41 },
42 "eslintConfig": {
43 "extends": [
44 "stylelint"
45 ]
46 }
47}