Projekt

Obecné

Profil

Stáhnout (1.43 KB) Statistiky
| Větev: | Revize:
1
{
2
  "name": "object-inspect",
3
  "version": "1.7.0",
4
  "description": "string representations of objects in node and the browser",
5
  "main": "index.js",
6
  "devDependencies": {
7
    "@ljharb/eslint-config": "^15.0.1",
8
    "core-js": "^2.6.10",
9
    "eslint": "^6.6.0",
10
    "nyc": "^10.3.2",
11
    "tape": "^4.11.0"
12
  },
13
  "scripts": {
14
    "pretest": "npm run lint",
15
    "lint": "eslint .",
16
    "test": "npm run tests-only",
17
    "pretests-only": "node test-core-js",
18
    "tests-only": "tape test/*.js",
19
    "posttest": "npx aud --production",
20
    "coverage": "nyc npm run tests-only"
21
  },
22
  "testling": {
23
    "files": [
24
      "test/*.js",
25
      "test/browser/*.js"
26
    ],
27
    "browsers": [
28
      "ie/6..latest",
29
      "chrome/latest",
30
      "firefox/latest",
31
      "safari/latest",
32
      "opera/latest",
33
      "iphone/latest",
34
      "ipad/latest",
35
      "android/latest"
36
    ]
37
  },
38
  "repository": {
39
    "type": "git",
40
    "url": "git://github.com/substack/object-inspect.git"
41
  },
42
  "homepage": "https://github.com/substack/object-inspect",
43
  "keywords": [
44
    "inspect",
45
    "util.inspect",
46
    "object",
47
    "stringify",
48
    "pretty"
49
  ],
50
  "author": {
51
    "name": "James Halliday",
52
    "email": "mail@substack.net",
53
    "url": "http://substack.net"
54
  },
55
  "funding": {
56
    "url": "https://github.com/sponsors/ljharb"
57
  },
58
  "license": "MIT",
59
  "browser": {
60
    "./util.inspect.js": false
61
  },
62
  "greenkeeper": {
63
    "ignore": [
64
      "nyc",
65
      "core-js"
66
    ]
67
  }
68
}
(5-5/8)