-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "easy-compare",
"version": "0.0.11",
"description": "Compare values using opertaros like mongodb",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test NODE_PATH=./ mocha \"./{,!(node_modules)/**/}*.test.js\" --colors --reporter spec",
"test:watch": "NODE_ENV=test NODE_PATH=./ mocha -w \"./{,!(node_modules)/**/}*.test.js\" --colors --reporter spec",
"test:debug": "NODE_ENV=test NODE_PATH=./ mocha debug -w \"./{,!(node_modules)/**/}*.test.js\" --colors --reporter spec",
"lint": "npx eslint . --ignore-pattern node_modules/ --ignore-pattern test/coverage",
"lint:fix": "npm run lint -- --fix",
"coverage": "nyc npm test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"update:packages": "rm -rf node_modules && npm update --save-dev && npm update --save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torto/easy-compare.git"
},
"keywords": [
"mongodb",
"compare",
"json",
"comparator",
"function",
"operator",
"values"
],
"author": "Guilherme Berghuaser - @torto",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/torto/easy-compare/issues"
},
"homepage": "https://github.com/torto/easy-compare#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
},
"nyc": {
"check-coverage": true,
"reporter": [
"lcov",
"text",
"text-summary"
]
}
}