-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "chai-quantifiers",
"version": "1.0.18",
"description": "Array quantifier assertions for chai assertion library",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/funny-bytes/chai-quantifiers"
},
"keywords": [
"chai",
"assertions",
"chai-plugin",
"quantifiers",
"array"
],
"author": "Frank Thelen>",
"license": "MIT",
"bugs": {
"url": "https://github.com/funny-bytes/chai-quantifiers/issues"
},
"homepage": "https://github.com/funny-bytes/chai-quantifiers#readme",
"scripts": {
"lint": "eslint . --ignore-path ./.eslintignore",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "mocha --exit --recursive test/**/*.spec.js",
"test:typescript": "mocha -r ts-node/register --exit --recursive test/**/*.spec.ts",
"cover": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive test/**/*.spec.js",
"coveralls": "npm run cover && nyc report --reporter=lcovonly && cat ./coverage/lcov.info | coveralls",
"preversion": "npm run lint && npm test"
},
"engines": {
"node": ">=12.x.x"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.20",
"ansi-regex": ">=5.0.1",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"y18n": ">=4.0.1"
},
"peerDependencies": {
"chai": "^4.x.x"
}
}