@test-runner/tom
Version:
Define a Test Object Model
59 lines (58 loc) • 1.28 kB
JSON
{
"name": "@test-runner/tom",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "0.9.1",
"description": "Define a Test Object Model",
"repository": "https://github.com/test-runner-js/tom",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"keywords": [
"test-runner",
"test",
"testing",
"suite",
"runner",
"model",
"test-object-model"
],
"license": "MIT",
"engines": {
"node": ">=12.17"
},
"scripts": {
"test": "npm run dist && npm run test:ci",
"test:ci": "test-runner --view.hide-skips test/*.js",
"test:web": "web-runner test/*.js",
"dist": "rollup -c",
"docs": "jsdoc2md index.js lib/*.js > docs/API.md"
},
"dependencies": {
"composite-class": "^2.0.1",
"create-mixin": "^3.0.0",
"fsm-base": "^0.7.0",
"race-timeout-anywhere": "^2.0.0",
"typical": "^7.1.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"isomorphic-assert": "^1.0.0",
"jsdoc-to-markdown": "^7.1.0",
"rollup": "^2.64.0",
"sleep-anywhere": "^2.1.0",
"test-runner": "^0.10.0"
},
"standard": {
"ignore": [
"tmp",
"dist"
]
},
"files": [
"index.js",
"lib",
"dist"
]
}