@applicvision/js-toolbox
Version:
A collection of tools for modern JavaScript development
52 lines (51 loc) • 1.45 kB
JSON
{
"name": "@applicvision/js-toolbox",
"version": "2.11.1",
"description": "A collection of tools for modern JavaScript development",
"type": "module",
"scripts": {
"prepublishOnly": "npm test",
"test": "./src/bin/testrunner.bin.js",
"tdd": "node --watch src/bin/testrunner.bin.js",
"test-browser": "./src/bin/testrunner-browser.bin.js",
"tdd-browser": "./src/bin/testrunner-browser.bin.js --watch src --watch test"
},
"exports": {
"./test": "./src/universal/av-test.js",
"./expect": "./src/av-test/expect.js",
"./function-spy": "./src/universal/function-spy.js",
"./ayay": "./src/universal/ayay.js",
"./izza-date": "./src/universal/izza-date.js",
"./args": "./src/parse-args.js",
"./style": "./src/terminal-style.js",
"./find-files": "./src/find-files.js"
},
"bin": {
"autoreload": "./src/bin/autoreload.bin.js",
"toolbox-playground": "./src/bin/playground.bin.js",
"self-serve": "./src/bin/self-serve.bin.js",
"filewatcher": "./src/bin/filewatcher.bin.js",
"testa": "./src/bin/testrunner.bin.js",
"test-browser": "./src/bin/testrunner-browser.bin.js"
},
"files": [
"src/**/*.js",
"src/av-test-browser/public/*"
],
"license": "MIT",
"keywords": [
"Toolbox",
"Development",
"Test",
"Utils",
"Array",
"Ayay",
"Date",
"Auto reload"
],
"config": {
"testa": {
"endsWith": ".test.js"
}
}
}