-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.63 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "stylint-stylish",
"version": "0.0.0-development",
"description": "A stylish reporter for Stylint, heavily inspired by jshint-stylish",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"clean": "rimraf coverage/ index.js",
"build": "babel stylish.js -o index.js",
"cover": "yarn test --coverage",
"lint": "eslint .",
"prepublishOnly": "yarn clean && yarn build",
"pretest": "yarn clean",
"test": "jest --forceExit"
},
"repository": "SimenB/stylint-stylish",
"keywords": [
"lint",
"reporter",
"stylint",
"stylint-reporter",
"stylish",
"stylus"
],
"author": "Simen Bekkhus <sbekkhus91@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimenB/stylint-stylish/issues"
},
"homepage": "https://github.com/SimenB/stylint-stylish#readme",
"dependencies": {
"chalk": "^2.0.1",
"log-symbols": "^2.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-plugin-add-module-exports": "^1.0.0",
"eslint": "^5.5.0",
"eslint-config-simenb-base": "^15.0.0",
"jest": "^24.0.0",
"prettier": "^1.4.0",
"rimraf": "^3.0.0",
"strip-ansi": "^4.0.0",
"stylint": "^1.5.9"
},
"peerDependencies": {
"stylint": "1.x"
},
"engines": {
"node": ">=4"
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"publishConfig": {
"provenance": true
}
}