1 | {
|
---|
2 | "name": "deep-equal",
|
---|
3 | "version": "1.1.1",
|
---|
4 | "description": "node's assert.deepEqual algorithm",
|
---|
5 | "main": "index.js",
|
---|
6 | "directories": {
|
---|
7 | "lib": ".",
|
---|
8 | "example": "example",
|
---|
9 | "test": "test"
|
---|
10 | },
|
---|
11 | "scripts": {
|
---|
12 | "prepublish": "safe-publish-latest",
|
---|
13 | "pretest": "npm run lint",
|
---|
14 | "lint": "eslint .",
|
---|
15 | "tests-only": "tape test/*",
|
---|
16 | "test": "npm run tests-only",
|
---|
17 | "posttest": "npx aud",
|
---|
18 | "version": "auto-changelog && git add CHANGELOG.md",
|
---|
19 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
---|
20 | },
|
---|
21 | "dependencies": {
|
---|
22 | "is-arguments": "^1.0.4",
|
---|
23 | "is-date-object": "^1.0.1",
|
---|
24 | "is-regex": "^1.0.4",
|
---|
25 | "object-is": "^1.0.1",
|
---|
26 | "object-keys": "^1.1.1",
|
---|
27 | "regexp.prototype.flags": "^1.2.0"
|
---|
28 | },
|
---|
29 | "devDependencies": {
|
---|
30 | "@ljharb/eslint-config": "^15.0.1",
|
---|
31 | "auto-changelog": "^1.16.2",
|
---|
32 | "eslint": "^6.6.0",
|
---|
33 | "safe-publish-latest": "^1.1.4",
|
---|
34 | "tape": "^4.11.0"
|
---|
35 | },
|
---|
36 | "repository": {
|
---|
37 | "type": "git",
|
---|
38 | "url": "http://github.com/substack/node-deep-equal.git"
|
---|
39 | },
|
---|
40 | "keywords": [
|
---|
41 | "equality",
|
---|
42 | "equal",
|
---|
43 | "compare"
|
---|
44 | ],
|
---|
45 | "author": {
|
---|
46 | "name": "James Halliday",
|
---|
47 | "email": "mail@substack.net",
|
---|
48 | "url": "http://substack.net"
|
---|
49 | },
|
---|
50 | "funding": {
|
---|
51 | "url": "https://github.com/sponsors/ljharb"
|
---|
52 | },
|
---|
53 | "license": "MIT",
|
---|
54 | "testling": {
|
---|
55 | "files": "test/*.js",
|
---|
56 | "browsers": {
|
---|
57 | "ie": [
|
---|
58 | 6,
|
---|
59 | 7,
|
---|
60 | 8,
|
---|
61 | 9
|
---|
62 | ],
|
---|
63 | "ff": [
|
---|
64 | 3.5,
|
---|
65 | 10,
|
---|
66 | 15
|
---|
67 | ],
|
---|
68 | "chrome": [
|
---|
69 | 10,
|
---|
70 | 22
|
---|
71 | ],
|
---|
72 | "safari": [
|
---|
73 | 5.1
|
---|
74 | ],
|
---|
75 | "opera": [
|
---|
76 | 12
|
---|
77 | ]
|
---|
78 | }
|
---|
79 | },
|
---|
80 | "auto-changelog": {
|
---|
81 | "output": "CHANGELOG.md",
|
---|
82 | "template": "keepachangelog",
|
---|
83 | "unreleased": false,
|
---|
84 | "commitLimit": false,
|
---|
85 | "backfillLimit": false
|
---|
86 | }
|
---|
87 | }
|
---|