forked from stylelint/stylelint-config-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 951 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "stylelint-config-uploadcare",
"version": "1.0.0",
"description": "Uploadcare shareable config for stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"uploadcare"
],
"author": "Uploadcare",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Akurganow/stylelint-config-uploadcare.git"
},
"main": "index.js",
"files": [
"index.js"
],
"devDependencies": {
"ava": "^0.15.0",
"eslint": "^2.2.0",
"eslint-config-uploadcare": "*",
"npmpub": "^3.0.1",
"stylelint": "^7.0.1"
},
"peerDependencies": {
"stylelint": "^7.0.1"
},
"scripts": {
"ava": "ava --verbose \"__tests__/**/*.js\"",
"lint": "eslint . --ignore-path .gitignore",
"pretest": "npm run lint",
"release": "npmpub",
"test": "npm run ava"
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"babel-eslint": "^7.0.0"
}
}