github-pages-deploy-action/node_modules/fast-deep-equal/package.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2020-01-28 13:07:56 +08:00
{
"name": "fast-deep-equal",
2020-03-07 11:45:40 +08:00
"version": "3.1.1",
2020-01-28 13:07:56 +08:00
"description": "Fast deep equal",
"main": "index.js",
"scripts": {
2020-03-07 11:45:40 +08:00
"eslint": "eslint *.js benchmark/*.js spec/*.js",
"build": "node build",
"benchmark": "npm i && npm run build && cd ./benchmark && npm i && node ./",
2020-01-28 13:07:56 +08:00
"test-spec": "mocha spec/*.spec.js -R spec",
"test-cov": "nyc npm run test-spec",
"test-ts": "tsc --target ES5 --noImplicitAny index.d.ts",
2020-03-07 11:45:40 +08:00
"test": "npm run build && npm run eslint && npm run test-ts && npm run test-cov",
"prepublish": "npm run build"
2020-01-28 13:07:56 +08:00
},
"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",
2020-03-07 11:45:40 +08:00
"dot": "^1.1.2",
2020-01-28 13:07:56 +08:00
"eslint": "^4.0.0",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"pre-commit": "^1.2.2",
2020-03-07 11:45:40 +08:00
"react": "^16.12.0",
"react-test-renderer": "^16.12.0",
"sinon": "^7.5.0",
"typescript": "^2.6.1"
2020-01-28 13:07:56 +08:00
},
"nyc": {
"exclude": [
"**/spec/**",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
]
},
"files": [
"index.js",
2020-03-07 11:45:40 +08:00
"index.d.ts",
"react.js",
"react.d.ts",
"es6/"
2020-01-28 13:07:56 +08:00
],
"types": "index.d.ts"
}