mathball
Version:
A JavaScript library for Competitive Programming
43 lines (42 loc) • 998 B
JSON
{
"name": "mathball",
"version": "0.4.0",
"description": "A JavaScript library for Competitive Programming",
"keywords": [
"competitive-programming",
"computer-science",
"algorithms",
"data-structures",
"javascript",
"mathematical-utilities"
],
"main": "lib/index.js",
"scripts": {
"build": "babel ./src -d ./lib",
"test": "nyc mocha --require babel-core/register",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepublishOnly": "npm run build"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbiswas101/Mathball.git"
},
"bugs": {
"url": "https://github.com/pbiswas101/Mathball/issues"
},
"author": "Priyabrata Biswas",
"license": "MIT"
}