Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « jsonpointer « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a2dab559607094ab137d7e6a43e12253e59b290 (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
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
{
  "_args": [
    [
      "jsonpointer@2.0.0",
      "/Users/ogd/Documents/projects/npm/npm/node_modules/is-my-json-valid"
    ]
  ],
  "_from": "jsonpointer@2.0.0",
  "_id": "jsonpointer@2.0.0",
  "_inCache": true,
  "_location": "/jsonpointer",
  "_nodeVersion": "0.10.36",
  "_npmUser": {
    "email": "marc.brookman@gmail.com",
    "name": "marcbachmann"
  },
  "_npmVersion": "2.10.1",
  "_phantomChildren": {},
  "_requested": {
    "name": "jsonpointer",
    "raw": "jsonpointer@2.0.0",
    "rawSpec": "2.0.0",
    "scope": null,
    "spec": "2.0.0",
    "type": "version"
  },
  "_requiredBy": [
    "/is-my-json-valid",
    "/npm-registry-couchapp/is-my-json-valid"
  ],
  "_resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz",
  "_shasum": "3af1dd20fe85463910d469a385e33017d2a030d9",
  "_shrinkwrap": null,
  "_spec": "jsonpointer@2.0.0",
  "_where": "/Users/ogd/Documents/projects/npm/npm/node_modules/is-my-json-valid",
  "author": {
    "email": "jan@apache.org",
    "name": "Jan Lehnardt"
  },
  "bugs": {
    "url": "http://github.com/janl/node-jsonpointer/issues"
  },
  "contributors": [
    {
      "name": "Joe Hildebrand",
      "email": "joe-github@cursive.net"
    }
  ],
  "dependencies": {},
  "description": "Simple JSON Addressing.",
  "devDependencies": {},
  "directories": {},
  "dist": {
    "shasum": "3af1dd20fe85463910d469a385e33017d2a030d9",
    "tarball": "http://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz"
  },
  "engines": {
    "node": ">=0.6.0"
  },
  "gitHead": "26ea4a5c0fcb6d9a2e87f733403791dd05637af8",
  "homepage": "https://github.com/janl/node-jsonpointer#readme",
  "installable": true,
  "license": "MIT",
  "main": "./jsonpointer",
  "maintainers": [
    {
      "name": "jan",
      "email": "jan@apache.org"
    },
    {
      "name": "marcbachmann",
      "email": "marc.brookman@gmail.com"
    }
  ],
  "name": "jsonpointer",
  "optionalDependencies": {},
  "readme": "# JSON Pointer for nodejs\n\nThis is an implementation of [JSON Pointer](http://tools.ietf.org/html/draft-ietf-appsawg-json-pointer-08).\n\n## Usage\n\n    var jsonpointer = require(\"jsonpointer\");\n    var obj = { foo: 1, bar: { baz: 2}, qux: [3, 4, 5]};\n    var one = jsonpointer.get(obj, \"/foo\");\n    var two = jsonpointer.get(obj, \"/bar/baz\");\n    var three = jsonpointer.get(obj, \"/qux/0\");\n    var four = jsonpointer.get(obj, \"/qux/1\");\n    var five = jsonpointer.get(obj, \"/qux/2\");\n    var notfound = jsonpointer.get(obj, \"/quo\"); // returns null\n\n    jsonpointer.set(obj, \"/foo\", 6); // obj.foo = 6;\n\n## Testing\n\n    $ node test.js\n    All tests pass.\n    $\n\n[![Build Status](https://travis-ci.org/janl/node-jsonpointer.png?branch=master)](https://travis-ci.org/janl/node-jsonpointer)\n\n## Author\n\n(c) 2011 Jan Lehnardt <jan@apache.org>\n\n## License\n\nMIT License.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/janl/node-jsonpointer.git"
  },
  "scripts": {
    "test": "node test.js"
  },
  "tags": [
    "simple",
    "util",
    "util",
    "utility"
  ],
  "version": "2.0.0"
}