aboutsummaryrefslogtreecommitdiff
path: root/node_modules/pkg-conf/package.json
blob: a690d7ca81110a1be649adbcff5f123e32283dbc (plain)
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
{
  "name": "pkg-conf",
  "version": "2.0.0",
  "description": "Get namespaced config from the closest package.json",
  "license": "MIT",
  "repository": "sindresorhus/pkg-conf",
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "sindresorhus.com"
  },
  "engines": {
    "node": ">=4"
  },
  "scripts": {
    "test": "xo && ava"
  },
  "files": [
    "index.js"
  ],
  "keywords": [
    "json",
    "read",
    "parse",
    "file",
    "fs",
    "graceful",
    "load",
    "pkg",
    "package",
    "config",
    "conf",
    "configuration",
    "object",
    "namespace",
    "namespaced"
  ],
  "dependencies": {
    "find-up": "^2.0.0",
    "load-json-file": "^2.0.0"
  },
  "devDependencies": {
    "ava": "*",
    "xo": "*"
  },
  "xo": {
    "esnext": true
  },
  "fixture": {
    "foo": true
  }
}