Blame view

node_modules/cosmiconfig/package.json 3.26 KB
aaac7fed   liuqimichale   add
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
  {
    "_args": [
      [
        "cosmiconfig@4.0.0",
        "/Library/WebServer/Documents/mywork/dyitoc"
      ]
    ],
    "_development": true,
    "_from": "cosmiconfig@4.0.0",
    "_id": "cosmiconfig@4.0.0",
    "_inBundle": false,
    "_integrity": "sha1-dgORVJWAu9LfHlYrwXexPCkJctw=",
    "_location": "/cosmiconfig",
    "_phantomChildren": {
      "argparse": "1.0.10"
    },
    "_requested": {
      "type": "version",
      "registry": true,
      "raw": "cosmiconfig@4.0.0",
      "name": "cosmiconfig",
      "escapedName": "cosmiconfig",
      "rawSpec": "4.0.0",
      "saveSpec": null,
      "fetchSpec": "4.0.0"
    },
    "_requiredBy": [
      "/postcss-load-config"
    ],
    "_resolved": "http://registry.npm.taobao.org/cosmiconfig/download/cosmiconfig-4.0.0.tgz",
    "_spec": "4.0.0",
    "_where": "/Library/WebServer/Documents/mywork/dyitoc",
    "author": {
      "name": "David Clark",
      "email": "david.dave.clark@gmail.com"
    },
    "babel": {
      "plugins": [
        "transform-flow-strip-types"
      ]
    },
    "bugs": {
      "url": "https://github.com/davidtheclark/cosmiconfig/issues"
    },
    "contributors": [
      {
        "name": "Bogdan Chadkin",
        "email": "trysound@yandex.ru"
      },
      {
        "name": "Suhas Karanth",
        "email": "sudo.suhas@gmail.com"
      }
    ],
    "dependencies": {
      "is-directory": "^0.3.1",
      "js-yaml": "^3.9.0",
      "parse-json": "^4.0.0",
      "require-from-string": "^2.0.1"
    },
    "description": "Find and load configuration from a package.json property, rc file, or CommonJS module",
    "devDependencies": {
      "babel-eslint": "^8.0.3",
      "babel-plugin-transform-flow-strip-types": "^6.22.0",
      "eslint": "^4.12.1",
      "eslint-config-davidtheclark-node": "^0.2.2",
      "eslint-config-prettier": "^2.9.0",
      "eslint-plugin-flowtype": "^2.39.1",
      "eslint-plugin-node": "^5.2.1",
      "flow-bin": "^0.54.1",
      "flow-remove-types": "^1.2.3",
      "husky": "^0.14.3",
      "jest": "^21.2.1",
      "lint-staged": "^6.0.0",
      "prettier": "^1.8.2"
    },
    "engines": {
      "node": ">=4"
    },
    "files": [
      "dist"
    ],
    "homepage": "https://github.com/davidtheclark/cosmiconfig#readme",
    "jest": {
      "testEnvironment": "node",
      "collectCoverageFrom": [
        "src/*.js"
      ],
      "coverageThreshold": {
        "global": {
          "branches": 100,
          "functions": 100,
          "lines": 100,
          "statements": 100
        }
      }
    },
    "keywords": [
      "load",
      "configuration",
      "config"
    ],
    "license": "MIT",
    "lint-staged": {
      "*.js": [
        "eslint --fix",
        "prettier --write",
        "git add"
      ]
    },
    "main": "dist/index.js",
    "name": "cosmiconfig",
    "prettier": {
      "trailingComma": "es5",
      "singleQuote": true,
      "printWidth": 80,
      "tabWidth": 2
    },
    "repository": {
      "type": "git",
      "url": "git+https://github.com/davidtheclark/cosmiconfig.git"
    },
    "scripts": {
      "build": "flow-remove-types src --out-dir dist --quiet",
      "coverage": "jest --coverage --coverageReporters=html --coverageReporters=text",
      "format": "prettier --write \"{src/*.js,test/*.js}\"",
      "lint": "eslint .",
      "lint:fix": "eslint . --fix",
      "precommit": "lint-staged && jest && flow check",
      "prepublishOnly": "npm run build",
      "pretest": "npm run lint && flow check",
      "test": "jest --coverage",
      "test:watch": "jest --watch"
    },
    "version": "4.0.0"
  }