package.json
{
"name": "@astuanax/funmatrix",
"sideEffects": false,
"version": "1.0.4",
"description": "Matrix monad",
"main": "lib/@astuanax/funmatrix.js",
"module": "src/matrix.js",
"scripts": {
"build": "./node_modules/.bin/eslint ./src --fix && npm run compile && npm run test && npm run jsdocs-json && npm run jsdocs && npm run size",
"dev": "webpack --progress --colors --watch --env dev",
"compile": "webpack --env dev && webpack --env build",
"test": "mocha --require @babel/register --colors ./test/*.spec.js",
"test:watch": "mocha --require @babel/register --colors -w ./test/*.spec.js",
"test:cover": "cross-env NODE_ENV=test nyc --reporter=lcov mocha --require @babel/register --colors test/*.spec.js",
"repl": "node -i -e \"$(< ./lib/@astuanax/funmatrix.js)\"",
"size": "size-limit",
"jsdocs": "jsdoc ./src -r -t ./node_modules/minami -d ./docs/ -R README.md",
"jsdocs-json": "jsdoc -X ./src -r > docs.json"
},
"size-limit": [
{
"path": "./lib/@astuanax/funmatrix.js",
"webpack": "./webpack.config.js"
}
],
"repository": {
"type": "git",
"url": "https://github.com/astuanax/funmatrix.git"
},
"keywords": [
"webpack",
"es6",
"library",
"universal",
"umd",
"commonjs"
],
"author": "Len Dierickx",
"license": "MIT",
"bugs": {
"url": "https://github.com/astuanax/funmatrix/issues"
},
"homepage": "https://astuanax.github.io/funmatrix/",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.5.5",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"babel-eslint": "^8.0.3",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.1",
"chai": "^4.1.2",
"create-index": "^2.4.0",
"cross-env": "^5.2.0",
"eslint": "^5.14.1",
"eslint-loader": "^2.1.2",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "11.11.0",
"jsdom-global": "3.0.2",
"minami": "^1.2.3",
"mocha": "^4.0.1",
"nyc": "^14.1.1",
"size-limit": "^0.22.0",
"standard": "^12.0.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"yargs": "^10.0.3"
},
"dependencies": {
"fun.js": "^1.0.5"
}
}