1
Fork 0
solar-conflux/typescript/option/package.json
Matei Adriel 0ef7baa739
typescript(option): refactor: now using @thi.ng/compose
Signed-off-by: prescientmoon <git@moonythm.dev>
2019-12-23 15:08:36 +02:00

45 lines
1.1 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"
},
"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/node": "^12.12.21",
"@wessberg/rollup-plugin-ts": "^1.1.83",
"rimraf": "^3.0.0",
"rollup": "^1.27.14",
"rollup-plugin-terser": "^5.1.3",
"semantic-release": "^15.14.0",
"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"
}
}