qunit-assertions-extra
Version:
Collection of helpful assertions for use with qunit
101 lines • 2.65 kB
JSON
{
"name": "qunit-assertions-extra",
"version": "1.0.3",
"private": false,
"description": "Collection of helpful assertions for use with qunit",
"repository": "https://github.com/NullVoxPopuli/qunit-assertions-extra",
"license": "MIT",
"author": "NullVoxPopuli",
"files": [
"dist"
],
"keywords": [
"qunit",
"qunit-plugin",
"testing",
"assertions",
"assert",
"extra"
],
"peerDependencies": {
"qunit": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@babel/register": "^7.6.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@nullvoxpopuli/eslint-configs": "^3.1.4",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.11",
"@types/qunit": "^2.9.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-preset-env": "^1.6.0",
"concurrently": "^8.2.0",
"esbuild": "^0.17.5",
"eslint": "^8.44.0",
"eslint-plugin-ember": "^11.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-qunit": "^8.0.0",
"execa": "^6.1.0",
"prettier": "^2.8.8",
"qunit": "^2.19.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vitest": "^0.28.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.cjs"
},
"volta": {
"extends": "../package.json"
},
"browser": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"type": "module",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"default": "./dist/esm/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/types/index.d.ts"
]
}
},
"scripts": {
"build": "rm -rf dist; pnpm build:js && pnpm build:types",
"build:js": "node ./config/build.mjs",
"build:types": "tsc --emitDeclarationOnly",
"lint": "concurrently npm:lint:*",
"lint:js": "eslint . --ext=js,ts",
"lint:types": "tsc --noEmit --skipLibCheck",
"lint:format": "prettier -c .",
"format": "prettier -w .",
"start": "ember serve"
}
}