40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
|
{
|
||
|
"name": "curri",
|
||
|
"version": "1.0.1",
|
||
|
"description": "Minimal curry implementation",
|
||
|
"main": "curri.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",
|
||
|
"test": "npm run lint && mocha test.js"
|
||
|
},
|
||
|
"files": [
|
||
|
"index.next.js"
|
||
|
],
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/GianlucaGuarini/curri.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"curry",
|
||
|
"currying",
|
||
|
"functional"
|
||
|
],
|
||
|
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (http://gianlucaguarini.com)",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/GianlucaGuarini/curri/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/GianlucaGuarini/curri#readme",
|
||
|
"devDependencies": {
|
||
|
"@gianlucaguarini/eslint-config": "^2.0.0",
|
||
|
"eslint": "^5.16.0",
|
||
|
"mocha": "^6.0.2",
|
||
|
"rollup": "^1.7.4"
|
||
|
}
|
||
|
}
|