UNPKG

arrange-act-assert

Version:

The lightweight "Act-Arrange-Assert" oriented testing framework

41 lines 1.23 kB
{ "name": "arrange-act-assert", "version": "2.9.1", "description": "The lightweight \"Act-Arrange-Assert\" oriented testing framework", "main": "lib/", "types": "lib/types", "files": [ "lib/", "LICENSE" ], "bin": { "aaa": "lib/cli.js" }, "private": false, "publishConfig": { "provenance": true }, "scripts": { "watch": "npm run clean && npx tsc -p tsconfig.json -watch", "build": "npm run clean && npx tsc -p tsconfig.build.json", "build-debug": "npm run clean && npx tsc -p tsconfig.json && npm run build-test-utils", "build-test-utils": "cd precompiled-test-utils && npm install && npm run build", "test": "node node_modules/arrange-act-assert/lib/cli.js", "clean": "node -e \"require('fs').rm('lib', {recursive: true}, O_o => {})\"" }, "author": "Llorx", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Llorx/arrange-act-assert.git" }, "bugs": { "url": "https://github.com/Llorx/arrange-act-assert/issues" }, "homepage": "https://github.com/Llorx/arrange-act-assert#readme", "devDependencies": { "@types/node": "^22.7.8", "arrange-act-assert": "^2.6.0", "typescript": "^5.6.3" } }