1fc2ef32e4
Signed-off-by: prescientmoon <git@moonythm.dev>
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "@adrielus/option",
|
|
"version": "0.0.0-development",
|
|
"description": "Typescript version of fsharps Option module",
|
|
"main": "dist/bundle.cjs.js",
|
|
"module": "dist/index.esm.js",
|
|
"typings": "dist/index.esm.d.ts",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "rollup -c rollup.config.ts",
|
|
"test": "mocha -r ts-node/register src/**/*.test.ts"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"typescript",
|
|
"fsharp",
|
|
"option",
|
|
"maybe",
|
|
"nullable"
|
|
],
|
|
"sideEffects": false,
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^11.0.0",
|
|
"@rollup/plugin-node-resolve": "^6.0.0",
|
|
"@types/chai": "^4.2.7",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^12.12.21",
|
|
"@wessberg/rollup-plugin-ts": "^1.1.83",
|
|
"chai": "^4.2.0",
|
|
"mocha": "^6.2.2",
|
|
"rimraf": "^3.0.0",
|
|
"rollup": "^1.27.14",
|
|
"rollup-plugin-terser": "^5.1.3",
|
|
"semantic-release": "^15.14.0",
|
|
"ts-node": "^8.5.4",
|
|
"typescript": "^3.7.4",
|
|
"utility-types": "^3.10.0"
|
|
},
|
|
"author": "Matei Adriel",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"dependencies": {
|
|
"@thi.ng/compose": "^1.3.6",
|
|
"tslib": "^1.10.0"
|
|
}
|
|
}
|