cloudcmd/modules/currify/package.json
2016-11-24 11:26:29 +02:00

53 lines
1.9 KiB
JSON

{
"name": "currify",
"version": "2.0.2",
"description": "translate the evaluation of a function that takes multiple arguments into evaluating a sequence of functions, each with a single or more arguments",
"main": "lib/currify.js",
"scripts": {
"test": "tape test/*.js",
"coverage": "nyc npm test",
"lint": "eslint lib test",
"build": "redrun clean 6to5 legacy:* bundle bundle minify",
"minify": "minify dist/currify.js > dist/currify.min.js",
"6to5": "babel -d legacy/lib lib",
"wisdom": "npm run build",
"clean": "rimraf dist/* legacy/*",
"bundle:base": "browserify -s currify --ng false",
"bundle": "npm run bundle:base -- -r ./lib/currify.js:currify ./lib/currify.js -o dist/currify.js",
"watcher": "nodemon -w test -w lib --exec",
"watch:test": "npm run watcher -- npm test",
"watch:lint": "npm run watcher -- 'npm run lint'",
"watch:tape": "nodemon -w test -w lib --exec tape",
"watch:coverage:base": "npm run watcher -- nyc npm test",
"watch:coverage:tape": "npm run watcher -- nyc tape",
"watch:coverage": "bin/redrun.js watch:coverage:base",
"legacy:index": "echo \"module.exports = require('./lib/currify');\" > legacy/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/coderaiser/currify.git"
},
"keywords": [
"currify",
"partial",
"functional"
],
"author": "coderaiser <mnemonic.enemy@gmail.com> (http://coderaiser.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderaiser/currify/issues"
},
"homepage": "https://github.com/coderaiser/currify",
"devDependencies": {
"babel-cli": "^6.1.1",
"babel-preset-es2015": "^6.0.15",
"browserify": "^13.0.0",
"eslint": "^3.10.2",
"minify": "^2.0.13",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"redrun": "^5.0.1",
"rimraf": "^2.4.3",
"tape": "^4.2.0"
}
}