-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1011 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
{
"name": "stylelint-config-sky",
"main": "index.js",
"author": "abouthiroppy <[email protected]> (http://about-hiroppy.com)",
"version": "1.1.0",
"license": "MIT",
"description": "",
"files": [],
"keywords": [
"stylelint",
"stylelint-config"
],
"homepage": "",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "nyc ava",
"test:watch": "ava -w",
"postcover": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"ava": {
"files": [
"test/**/*.js"
],
"concurrency": 5,
"failFast": true,
"tap": true
},
"devDependencies": {
"ava": "^0.23.0",
"conventional-changelog-cli": "^1.2.0",
"eslint": "^4.9.0",
"eslint-config-sky": "^1.2.1",
"eslint-plugin-import": "^2.7.0",
"nyc": "^11.2.1",
"stylelint": "^8.2.0"
},
"dependencies": {
"stylelint-order": "^0.7.0"
}
}