|
| 1 | +{ |
| 2 | + "name": "@assertive-ts/dom", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Assertive.ts plugin for DOM assertions", |
| 5 | + "repository": "[email protected]:stackbuilders/assertive-ts.git", |
| 6 | + "homepage": "https://stackbuilders.github.io/assertive-ts/", |
| 7 | + "author": "Stack Builders <[email protected]>", |
| 8 | + "license": "MIT", |
| 9 | + "keywords": [ |
| 10 | + "assertions", |
| 11 | + "assertive-ts", |
| 12 | + "testing", |
| 13 | + "testing-tools", |
| 14 | + "type-safety", |
| 15 | + "typescript", |
| 16 | + "plugin", |
| 17 | + "dom", |
| 18 | + "web" |
| 19 | + ], |
| 20 | + "main": "./dist/main.js", |
| 21 | + "types": "./dist/main.d.ts", |
| 22 | + "files": [ |
| 23 | + "dist/", |
| 24 | + "src/" |
| 25 | + ], |
| 26 | + "engines": { |
| 27 | + "node": ">=18" |
| 28 | + }, |
| 29 | + "scripts": { |
| 30 | + "build": "tsc -p tsconfig.prod.json", |
| 31 | + "check": "yarn compile && yarn test --forbid-only", |
| 32 | + "compile": "tsc -p tsconfig.json", |
| 33 | + "docs": "typedoc", |
| 34 | + "release": "semantic-release", |
| 35 | + "test": "NODE_ENV=test mocha" |
| 36 | + }, |
| 37 | + "dependencies": { |
| 38 | + "fast-deep-equal": "^3.1.3" |
| 39 | + }, |
| 40 | + "devDependencies": { |
| 41 | + "@assertive-ts/core": "workspace:^", |
| 42 | + "@types/jsdom-global": "^3", |
| 43 | + "@types/mocha": "^10.0.6", |
| 44 | + "@types/node": "^20.11.19", |
| 45 | + "jsdom": "^24.0.0", |
| 46 | + "jsdom-global": "^3.0.2", |
| 47 | + "mocha": "^10.3.0", |
| 48 | + "semantic-release": "^23.0.2", |
| 49 | + "semantic-release-yarn": "^3.0.2", |
| 50 | + "ts-node": "^10.9.2", |
| 51 | + "typedoc": "^0.25.8", |
| 52 | + "typedoc-plugin-markdown": "^3.17.1", |
| 53 | + "typedoc-plugin-merge-modules": "^5.1.0", |
| 54 | + "typescript": "^5.3.3" |
| 55 | + }, |
| 56 | + "peerDependencies": { |
| 57 | + "@assertive-ts/core": ">=2.0.0" |
| 58 | + }, |
| 59 | + "peerDependenciesMeta": { |
| 60 | + "@assertive-ts/core": { |
| 61 | + "optional": false |
| 62 | + } |
| 63 | + }, |
| 64 | + "publishConfig": { |
| 65 | + "access": "public", |
| 66 | + "provenance": true |
| 67 | + } |
| 68 | +} |
0 commit comments