react-fast-compare/package.json
Evgeny Poberezkin 7a8f904fce 0.1.0
2017-06-16 22:55:04 +01:00

45 lines
978 B
JSON

{
"name": "fast-deep-equal",
"version": "0.1.0",
"description": "Fast deep equal",
"main": "index.js",
"scripts": {
"eslint": "eslint *.js spec",
"test-spec": "mocha spec/*.spec.js -R spec",
"test-cov": "nyc npm run test-spec",
"test": "npm run eslint && npm run test-cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/fast-deep-equal.git"
},
"keywords": [
"fast",
"equal",
"deep-equal"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/epoberezkin/fast-deep-equal/issues"
},
"homepage": "https://github.com/epoberezkin/fast-deep-equal#readme",
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^4.0.0",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"pre-commit": "^1.2.2"
},
"nyc": {
"exclude": [
"**/spec/**",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
]
}
}