-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 858 Bytes
/
package.json
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
{
"name": "nano-equal",
"version": "2.0.2",
"description": "Ultra fast and compact implementation of deep equal without any production dependencies.",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"test": "npm run lint && ./node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smelukov/nano-equal.git"
},
"keywords": [
"equal",
"deep equal"
],
"author": "Sergey Melyukov",
"license": "MIT",
"bugs": {
"url": "https://github.com/smelukov/nano-equal/issues"
},
"homepage": "https://github.com/smelukov/nano-equal#readme",
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^4.5.0",
"lodash": "^4.17.4",
"mocha": "^2.3.4",
"underscore": "^1.8.3"
},
"files": [
"CHANGELOG.md",
"LICENSE.md",
"src/index.js"
]
}