43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "cumpa",
|
|
"version": "1.0.1",
|
|
"description": "Minimal function composition implementation",
|
|
"main": "cumpa.js",
|
|
"jsnext:main": "index.next.js",
|
|
"module": "index.next.js",
|
|
"scripts": {
|
|
"prepare": "npm run build && npm test",
|
|
"lint": "eslint index.next.js test.js rollup.config.js",
|
|
"build": "rollup -c",
|
|
"doc": "documentation readme index.next.js -s API",
|
|
"pretest": "npm run build",
|
|
"test": "npm run lint && mocha test.js"
|
|
},
|
|
"files": [
|
|
"index.next.js"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/GianlucaGuarini/cumpa.git"
|
|
},
|
|
"keywords": [
|
|
"flowRight",
|
|
"functional",
|
|
"compose",
|
|
"compose-right"
|
|
],
|
|
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (http://gianlucaguarini.com)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/GianlucaGuarini/cumpa/issues"
|
|
},
|
|
"homepage": "https://github.com/GianlucaGuarini/cumpa#readme",
|
|
"devDependencies": {
|
|
"@gianlucaguarini/eslint-config": "^2.0.0",
|
|
"eslint": "^5.16.0",
|
|
"mocha": "^6.0.2",
|
|
"rollup": "^1.7.4",
|
|
"rollup-plugin-node-resolve": "^4.0.1"
|
|
}
|
|
}
|