2019-12-19 11:37:48 +01:00
|
|
|
{
|
|
|
|
"name": "@adrielus/option",
|
|
|
|
"version": "0.0.0-development",
|
|
|
|
"description": "Typescript version of fsharps Option module",
|
|
|
|
"main": "dist/bundle.cjs.js",
|
|
|
|
"module": "dist/bundle.esm.js",
|
|
|
|
"typings": "dist/index.d.ts",
|
|
|
|
"scripts": {
|
|
|
|
"prebuild": "rimraf dist",
|
|
|
|
"build": "rollup -c rollup.config.ts"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"typescript",
|
|
|
|
"fsharp",
|
|
|
|
"option",
|
|
|
|
"maybe",
|
|
|
|
"nullable"
|
|
|
|
],
|
|
|
|
"sideEffects": false,
|
|
|
|
"devDependencies": {
|
|
|
|
"rimraf": "^3.0.0",
|
2019-12-19 12:50:17 +01:00
|
|
|
"rollup": "^1.27.13",
|
2019-12-19 11:37:48 +01:00
|
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
2019-12-19 12:50:17 +01:00
|
|
|
"rollup-plugin-dts": "^1.1.13",
|
2019-12-19 11:37:48 +01:00
|
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
2019-12-19 12:50:17 +01:00
|
|
|
"rollup-plugin-terser": "^5.1.3",
|
|
|
|
"rollup-plugin-typescript2": "^0.25.3",
|
|
|
|
"semantic-release": "^15.13.31",
|
|
|
|
"typescript": "^3.7.3"
|
2019-12-19 11:37:48 +01:00
|
|
|
},
|
|
|
|
"author": "Matei Adriel",
|
|
|
|
"license": "SEE LICENSE IN LICENSE"
|
|
|
|
}
|