@syntest/init
Version:
The setup application of the SynTest Framework
67 lines (66 loc) • 2.13 kB
JSON
{
"name": "@syntest/init",
"version": "0.2.1",
"description": "The setup application of the SynTest Framework",
"keywords": [
"syntest",
"automatic-test-generation"
],
"homepage": "https://www.syntest.org",
"bugs": {
"url": "https://github.com/syntest-framework/syntest-core/issues"
},
"license": "Apache-2.0",
"contributors": [
"Annibale Panichella",
"Mitchell Olsthoorn",
"Dimitri Stallenberg"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/lib",
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/index.js",
"dist/index.js.map",
"NOTICE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/syntest-framework/syntest-core.git"
},
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"clean": "rm -rf .nyc_output dist node_modules coverage",
"clean:dist": "rm -rf dist",
"format": "prettier --config ../../.prettierrc.json --ignore-path ../../.prettierignore --write .",
"format:check": "prettier --config ../../.prettierrc.json --ignore-path ../../.prettierignore --check .",
"lint": "eslint --config ../../.eslintrc.json --ignore-path ../../.eslintignore .",
"lint:fix": "eslint --config ../../.eslintrc.json --ignore-path ../../.eslintignore . --fix",
"test": "mocha --config ../../.mocharc.json",
"test:coverage": "nyc --reporter=text --reporter=html mocha --config ../../.mocharc.json",
"test:coverage:ci": "nyc --reporter=lcovonly mocha --config ../../.mocharc.json --reporter json --reporter-option output=test-results.json",
"test:watch": "mocha --config ../../.mocharc.json --watch"
},
"dependencies": {
"@syntest/cli-graphics": "^0.2.0",
"@syntest/logging": "^0.1.1",
"@syntest/metric": "^0.1.1",
"@syntest/module": "^0.1.1",
"shelljs": "^0.8.5",
"yargs": "^17.7.1"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/shelljs": "^0.8.11"
},
"gitHead": "912254257fbc2c098f58a4691e3c71fc00498222"
}