39 lines
1.3 KiB
JSON
39 lines
1.3 KiB
JSON
{
|
|
"name": "@anwinged/predictor",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"author": "Anton Vakhrushev",
|
|
"license": "MIT",
|
|
"main": "dist/predictor.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/anwinged/predictor.git"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"test:junit-report": "mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./test-results/results.xml",
|
|
"coverage": "nyc mocha",
|
|
"build:dev": "webpack",
|
|
"build": "webpack --env.production",
|
|
"format": "prettier --tab-width=4 --single-quote --trailing-comma es5 --write '{src,tests}/**/*.{ts,js}'",
|
|
"format-check": "prettier --tab-width=4 --single-quote --trailing-comma es5 --check '{src,tests}/**/*.{ts,js}'",
|
|
"format-wp": "prettier --tab-width=4 --single-quote --trailing-comma es5 --write 'webpack.config.js'",
|
|
"format-md": "prettier --write './*.md'"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.11",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/node": "^13.9.2",
|
|
"chai": "^4.2.0",
|
|
"mocha": "^7.1.1",
|
|
"mocha-junit-reporter": "^1.23.3",
|
|
"nyc": "^15.0.0",
|
|
"prettier": "^1.19.1",
|
|
"ts-loader": "^6.2.1",
|
|
"ts-node": "^8.7.0",
|
|
"typescript": "^3.8.3",
|
|
"webpack": "^4.42.0",
|
|
"webpack-cli": "^3.3.11"
|
|
}
|
|
}
|