This repository has been archived by the owner on Aug 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
{
"name": "readable-cli",
"version": "0.4.0",
"description": "Utilities for formatting and linting different code formats.",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"bin": {
"readable": "bin/readable"
},
"scripts": {
"release": "git push && release-it --github.release --npm.publish --non-interactive",
"release:minor": "git push && release-it --github.release --npm.publish --non-interactive --increment minor",
"release:major": "git push && release-it --github.release --npm.publish --non-interactive --increment major",
"prepack": "rimraf bin && rimraf lib && preppy",
"test": "npm run prepack"
},
"files": [
"bin/",
"lib/",
"jest.config.*"
],
"engines": {
"node": ">=6.0.0",
"npm": ">=4.0.0",
"yarn": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/readable-cli.git"
},
"keywords": [
"code",
"quality",
"linting",
"error",
"check",
"javascript",
"stylesheet",
"markdown"
],
"author": {
"name": "Sebastian Software",
"email": "s.werner@sebastian-software.de",
"url": "https://www.sebastian-software.de"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sebastian-software/readable-cli/issues"
},
"homepage": "https://github.com/sebastian-software/readable-cli#readme",
"devDependencies": {
"eslint-config-readable": "^1.10.2",
"preppy": "^3.3.1",
"release-it": "^6.2.0",
"rimraf": "^2.6.2",
"stylelint-config-readable": "^1.0.3"
},
"dependencies": {
"app-root-dir": "^1.0.2",
"eslint-formatter-pretty": "^1.3.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"jest-runner-eslint": "^0.4.0",
"jest-runner-stylelint": "^1.0.0",
"lint-staged": "^6.1.0",
"svgo": "^1.0.4"
}
}