UNPKG

1.96 kBJSONView Raw
1{
2 "name": "easy-compare",
3 "version": "0.0.8",
4 "description": "Compare values using opertaros like mongodb",
5 "main": "index.js",
6 "scripts": {
7 "test": "NODE_ENV=test NODE_PATH=./ mocha \"./{,!(node_modules)/**/}*.test.js\" --colors --reporter spec",
8 "test:watch": "NODE_ENV=test NODE_PATH=./ mocha -w \"./{,!(node_modules)/**/}*.test.js\" --colors --reporter spec",
9 "test:debug": "NODE_ENV=test NODE_PATH=./ mocha debug -w \"./{,!(node_modules)/**/}*.test.js\" --colors --reporter spec",
10 "lint": "npx eslint . --ignore-pattern node_modules/ --ignore-pattern test/coverage",
11 "lint:fix": "npm run lint -- --fix",
12 "coverage": "nyc npm test",
13 "coveralls": "nyc npm test && nyc report --reporter=text-lcov && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/torto/easy-compare.git"
18 },
19 "keywords": [
20 "mongodb",
21 "compare",
22 "json"
23 ],
24 "author": "Guilherme Berghuaser - @torto",
25 "license": "GPL-3.0",
26 "bugs": {
27 "url": "https://github.com/torto/easy-compare/issues"
28 },
29 "homepage": "https://github.com/torto/easy-compare#readme",
30 "devDependencies": {
31 "@babel/core": "^7.5.5",
32 "@babel/preset-env": "^7.5.5",
33 "babel-loader": "^8.0.6",
34 "chai": "^4.2.0",
35 "coveralls": "^3.0.6",
36 "eslint": "^6.1.0",
37 "eslint-config-standard": "^13.0.1",
38 "eslint-plugin-chai-expect": "^2.0.1",
39 "eslint-plugin-chai-friendly": "^0.4.1",
40 "eslint-plugin-import": "^2.18.2",
41 "eslint-plugin-node": "^9.1.0",
42 "eslint-plugin-promise": "^4.2.1",
43 "eslint-plugin-standard": "^4.0.0",
44 "mocha": "^6.2.0",
45 "nyc": "^14.1.1",
46 "terser-webpack-plugin": "^1.4.1",
47 "uglifyjs-webpack-plugin": "^2.2.0",
48 "webpack": "^4.39.2",
49 "webpack-cli": "^3.3.7"
50 },
51 "nyc": {
52 "check-coverage": true,
53 "reporter": [
54 "lcov",
55 "text",
56 "text-summary"
57 ]
58 }
59}