1
|
{
|
2
|
"name": "fast-deep-equal",
|
3
|
"version": "3.1.1",
|
4
|
"description": "Fast deep equal",
|
5
|
"main": "index.js",
|
6
|
"scripts": {
|
7
|
"eslint": "eslint *.js benchmark/*.js spec/*.js",
|
8
|
"build": "node build",
|
9
|
"benchmark": "npm i && npm run build && cd ./benchmark && npm i && node ./",
|
10
|
"test-spec": "mocha spec/*.spec.js -R spec",
|
11
|
"test-cov": "nyc npm run test-spec",
|
12
|
"test-ts": "tsc --target ES5 --noImplicitAny index.d.ts",
|
13
|
"test": "npm run build && npm run eslint && npm run test-ts && npm run test-cov",
|
14
|
"prepublish": "npm run build"
|
15
|
},
|
16
|
"repository": {
|
17
|
"type": "git",
|
18
|
"url": "git+https://github.com/epoberezkin/fast-deep-equal.git"
|
19
|
},
|
20
|
"keywords": [
|
21
|
"fast",
|
22
|
"equal",
|
23
|
"deep-equal"
|
24
|
],
|
25
|
"author": "Evgeny Poberezkin",
|
26
|
"license": "MIT",
|
27
|
"bugs": {
|
28
|
"url": "https://github.com/epoberezkin/fast-deep-equal/issues"
|
29
|
},
|
30
|
"homepage": "https://github.com/epoberezkin/fast-deep-equal#readme",
|
31
|
"devDependencies": {
|
32
|
"coveralls": "^2.13.1",
|
33
|
"dot": "^1.1.2",
|
34
|
"eslint": "^4.0.0",
|
35
|
"mocha": "^3.4.2",
|
36
|
"nyc": "^11.0.2",
|
37
|
"pre-commit": "^1.2.2",
|
38
|
"react": "^16.12.0",
|
39
|
"react-test-renderer": "^16.12.0",
|
40
|
"sinon": "^7.5.0",
|
41
|
"typescript": "^2.6.1"
|
42
|
},
|
43
|
"nyc": {
|
44
|
"exclude": [
|
45
|
"**/spec/**",
|
46
|
"node_modules"
|
47
|
],
|
48
|
"reporter": [
|
49
|
"lcov",
|
50
|
"text-summary"
|
51
|
]
|
52
|
},
|
53
|
"files": [
|
54
|
"index.js",
|
55
|
"index.d.ts",
|
56
|
"react.js",
|
57
|
"react.d.ts",
|
58
|
"es6/"
|
59
|
],
|
60
|
"types": "index.d.ts"
|
61
|
}
|