elm-test
Version:
Run elm-test suites.
70 lines (69 loc) • 1.78 kB
JSON
{
"name": "elm-test",
"version": "0.19.1-revision6",
"description": "Run elm-test suites.",
"main": "elm-test.js",
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"prepare": "elm-tooling install",
"test": "npm run check && npm run test-only",
"flow": "flow",
"lint": "eslint --report-unused-disable-directives .",
"review": "cd elm && elm-review",
"elm-test": "cd elm && node ../bin/elm-test",
"test-only": "mocha tests && npm run elm-test",
"check": "flow check && npm run lint && npm run format:check && npm run review",
"format:check": "prettier --check . && elm-format elm --validate",
"format:write": "prettier --write . && elm-format elm --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rtfeldman/node-test-runner.git"
},
"bin": {
"elm-test": "bin/elm-test"
},
"files": [
"bin",
"lib",
"templates",
"elm/elm.json",
"elm/src"
],
"keywords": [
"elm",
"elm-test",
"cli"
],
"author": "Richard Feldman",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/rtfeldman/node-test-runner/issues"
},
"homepage": "https://github.com/rtfeldman/node-test-runner#readme",
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"commander": "^7.0.0",
"cross-spawn": "^7.0.3",
"elm-tooling": "^1.1.0",
"glob": "^7.1.6",
"graceful-fs": "^4.2.4",
"rimraf": "^3.0.2",
"split": "^1.0.1",
"which": "^2.0.2",
"xmlbuilder": "^15.1.0"
},
"devDependencies": {
"elm-review": "2.4.0",
"eslint": "7.17.0",
"eslint-plugin-mocha": "8.0.0",
"flow-bin": "0.142.0",
"mocha": "8.2.1",
"prettier": "2.1.2",
"strip-ansi": "6.0.0",
"xml2js": "0.4.23"
}
}