funcprolib
Version:
Functional Programming Library
55 lines (54 loc) • 2.19 kB
JSON
{
"name": "funcprolib",
"version": "2.0.2",
"description": "Functional Programming Library",
"main": "dist/main.js",
"keywords": [
"functionnal",
"programming",
"maybe",
"either",
"javascript",
"nodejs"
],
"author": "Stéphane Trébel",
"license": "MIT",
"scripts": {
"docs": "jsdoc -c jsdoc.json",
"lint": "jslint --version && jslint 'src/**/*.js'",
"unit-tests-console": "tape -r babel-core/register 'src/**/*.spec.js'",
"unit-tests-faucet": "npm run -s unit-tests-console | faucet",
"unit-tests": "nyc --require babel-core/register --reporter=text --all npm run -s unit-tests-faucet && nyc report --reporter=$REPORTER && nyc check-coverage --lines 100 --functions 100 --branches 100",
"test": "npm run -s lint && REPORTER=html npm run -s unit-tests",
"test-ci": "npm run -s lint && REPORTER=text-lcov npm run -s unit-tests | coveralls",
"tdd": "npm run -s lint && npm run -s unit-tests-console",
"transpile": "babel src --out-dir dist --source-maps",
"build": "npm run -s transpile",
"new-git-tag": "git tag -a $npm_package_version -m $npm_package_version",
"commit-new-version": "git add --all && git commit -m $npm_package_version -m '(Autogenerated, please update !)'",
"bump-version": "echo Have you updated the version number ? If not please Ctrl-C NOW ! && read test",
"new-version": "npm run -s bump-version && npm run -s test && npm run -s build && npm run -s docs && npm run -s new-git-tag && npm run -s commit-new-version"
},
"devDependencies": {
"babel-cli": "~6.18.0",
"babel-preset-es2015": "~6.18.0",
"coveralls": "~2.11.15",
"faucet": "~0.0.1",
"jsdoc": "~3.4.3",
"jslint": "stephanetrebel/node-jslint",
"nyc": "~9.0.1",
"semtest": "2.0.1",
"semtest-e2e": "2.0.1",
"tape": "~4.6.2"
},
"nyc": {
"exclude": [
"dist",
"node_modules",
"coverage",
"docs",
"'**/*.spec.js'",
"tests"
]
}
}