ts-scikit
Version:
A scientific toolkit written in Typescript
77 lines (76 loc) • 1.89 kB
JSON
{
"name": "ts-scikit",
"version": "0.1.2",
"description": "A scientific toolkit written in Typescript",
"author": "Chris Engelsma <chris.engelsma@gmail.com>",
"main": "index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/chrisengelsma/ts-scikit.git"
},
"bugs": {
"url": "https://github.com/chrisengelsma/ts-scikit/issues"
},
"contributors": [],
"keywords": [
"scientific-computing",
"science",
"image-processing"
],
"license": "Apache-2.0",
"scripts": {
"setup": "npm install",
"build": "tsc -p .",
"build:watch": "tsc -w -p .",
"lint": "tslint -p tsconfig.json",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"toc": "./node_modules/.bin/doctoc README.md --github --maxlevel 3",
"doc": "typedoc --out ./docs --mode file --excludePrivate --excludeProtected --tsconfig tsconfig.json ./src",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"postdoc": "shx cp .nojekyll docs/.nojekyll",
"coverage": "nyc npm run test"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"doctoc": "^1.4.0",
"coveralls": "^3.1.0",
"mocha-lcov-reporter": "^1.3.0",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"shx": "^0.3.2",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typedoc": "^0.17.7",
"npm-run-all": "^4.1.5",
"tslint": "^6.1.2",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=4.0.0"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"nyc": {
"extensions": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts",
"**/index.ts"
],
"reporter": [
"html",
"lcov",
"text"
],
"all": false
}
}