-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 910 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
{
"name": "@designveloper/deep-comparison",
"version": "1.0.0",
"description": "Deep recursive objects comparison",
"module": "./src/index.js",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sonlexqt/deep-comparison.git"
},
"author": "designveloper",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonlexqt/deep-comparison/issues"
},
"homepage": "https://github.com/sonlexqt/deep-comparison#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.0.2"
},
"dependencies": {
"crypto-js": "^3.1.9-1"
}
}