.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / cosmiconfig / package.json
1 {
2   "name": "cosmiconfig",
3   "version": "3.1.0",
4   "description": "Find and load configuration from a package.json property, rc file, or CommonJS module",
5   "main": "dist/index.js",
6   "files": [
7     "dist"
8   ],
9   "scripts": {
10     "precommit": "lint-staged && jest && flow check",
11     "lint": "eslint .",
12     "lint:fix": "eslint . --fix",
13     "pretest": "npm run lint && flow check",
14     "test": "jest --coverage",
15     "test:watch": "jest --watch",
16     "coverage": "jest --coverage --coverageReporters=html --coverageReporters=text",
17     "build": "flow-remove-types src --out-dir dist --quiet",
18     "prepublishOnly": "npm run build"
19   },
20   "lint-staged": {
21     "*.js": [
22       "eslint --fix",
23       "prettier --write",
24       "git add"
25     ]
26   },
27   "repository": {
28     "type": "git",
29     "url": "git+https://github.com/davidtheclark/cosmiconfig.git"
30   },
31   "keywords": [
32     "load",
33     "configuration",
34     "config"
35   ],
36   "author": "David Clark <david.dave.clark@gmail.com>",
37   "contributors": [
38     "Bogdan Chadkin <trysound@yandex.ru>",
39     "Suhas Karanth <sudo.suhas@gmail.com>"
40   ],
41   "license": "MIT",
42   "bugs": {
43     "url": "https://github.com/davidtheclark/cosmiconfig/issues"
44   },
45   "homepage": "https://github.com/davidtheclark/cosmiconfig#readme",
46   "prettier": {
47     "trailingComma": "es5",
48     "singleQuote": true,
49     "printWidth": 80,
50     "tabWidth": 2
51   },
52   "jest": {
53     "testEnvironment": "node",
54     "collectCoverageFrom": [
55       "src/*.js"
56     ],
57     "coverageThreshold": {
58       "global": {
59         "branches": 100,
60         "functions": 100,
61         "lines": 100,
62         "statements": 100
63       }
64     }
65   },
66   "babel": {
67     "plugins": [
68       "transform-flow-strip-types"
69     ]
70   },
71   "dependencies": {
72     "is-directory": "^0.3.1",
73     "js-yaml": "^3.9.0",
74     "parse-json": "^3.0.0",
75     "require-from-string": "^2.0.1"
76   },
77   "devDependencies": {
78     "babel-eslint": "^8.0.0",
79     "babel-plugin-transform-flow-strip-types": "^6.22.0",
80     "eslint": "^4.7.0",
81     "eslint-config-davidtheclark-node": "^0.2.0",
82     "eslint-config-prettier": "^2.5.0",
83     "eslint-plugin-flowtype": "^2.35.1",
84     "eslint-plugin-node": "^3.0.5",
85     "flow-bin": "^0.54.1",
86     "flow-remove-types": "^1.2.1",
87     "husky": "^0.14.3",
88     "jest": "^21.1.0",
89     "lint-staged": "^4.2.1",
90     "prettier": "^1.7.0"
91   },
92   "engines": {
93     "node": ">=4"
94   }
95 }