diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-21 20:56:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-21 20:56:20 +0000 |
commit | 868522aa377a4519adb0b9f402586ab7a41b86ba (patch) | |
tree | 44e805e154a3ace9bd8dbac73843e80d296b7814 /debian/tests/test_modules/chai-iterator/package.json | |
parent | Adding upstream version 5.28.2+dfsg1+~cs23.11.12.3. (diff) | |
download | node-undici-debian.tar.xz node-undici-debian.zip |
Adding debian version 5.28.2+dfsg1+~cs23.11.12.3-6.debian/5.28.2+dfsg1+_cs23.11.12.3-6debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/tests/test_modules/chai-iterator/package.json')
-rw-r--r-- | debian/tests/test_modules/chai-iterator/package.json | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/debian/tests/test_modules/chai-iterator/package.json b/debian/tests/test_modules/chai-iterator/package.json new file mode 100644 index 0000000..34f76c1 --- /dev/null +++ b/debian/tests/test_modules/chai-iterator/package.json @@ -0,0 +1,70 @@ +{ + "name": "chai-iterator", + "version": "3.0.2", + "description": "Chai assertions for iterable objects", + "main": "chai-iterator.js", + "scripts": { + "test:lint": "xo", + "test:mocha": "mocha test/**/*.js", + "test:cover": "nyc npm run test:mocha", + "test": "npm run test:lint && npm run test:cover", + "coveralls": "nyc report --reporter=text-lcov | coveralls" + }, + "files": [ + "chai-iterator.js", + "LICENSE", + "CHANGELOG.md", + "README.md" + ], + "repository": { + "type": "git", + "url": "https://github.com/harrysarson/chai-iterator.git" + }, + "keywords": [ + "chai", + "chai-plugin", + "browser", + "iterator", + "iterable", + "iteration", + "generator", + "yield", + "es6", + "es2015", + "typescript" + ], + "engines": { + "node": ">=6.0" + }, + "author": "Harry Sarson <harry.sarson@hotmail.co.uk>", + "license": "MIT", + "bugs": { + "url": "https://github.com/harrysarson/chai-iterator/issues" + }, + "homepage": "https://github.com/harrysarson/chai-iterator", + "peerDependencies": { + "chai": "4.x" + }, + "devDependencies": { + "chai": "4.1.2", + "coveralls": "3.0.2", + "mocha": "6.0.0", + "nyc": "13.3.0", + "xo": "0.24.0" + }, + "xo": { + "esnext": false, + "globals": [ + "chai", + "define", + "module" + ], + "env": [ + "mocha" + ], + "rules": { + "no-unused-expressions": "off", + "no-use-extend-native/no-use-extend-native": "off" + } + } +} |