package.json
 1  {
 2    "name": "deep-is",
 3    "version": "0.1.4",
 4    "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN",
 5    "main": "index.js",
 6    "directories": {
 7      "lib": ".",
 8      "example": "example",
 9      "test": "test"
10    },
11    "scripts": {
12      "test": "tape test/*.js"
13    },
14    "devDependencies": {
15      "tape": "~1.0.2"
16    },
17    "repository": {
18      "type": "git",
19      "url": "http://github.com/thlorenz/deep-is.git"
20    },
21    "keywords": [
22      "equality",
23      "equal",
24      "compare"
25    ],
26    "author": {
27      "name": "Thorsten Lorenz",
28      "email": "thlorenz@gmx.de",
29      "url": "http://thlorenz.com"
30    },
31    "license": "MIT",
32    "testling": {
33      "files": "test/*.js",
34      "browsers": {
35        "ie": [
36          6,
37          7,
38          8,
39          9
40        ],
41        "ff": [
42          3.5,
43          10,
44          15
45        ],
46        "chrome": [
47          10,
48          22
49        ],
50        "safari": [
51          5.1
52        ],
53        "opera": [
54          12
55        ]
56      }
57    }
58  }