UNPKG

sodiumjs

Version:

A Functional Reactive Programming (FRP) library for JavaScript

82 lines (81 loc) 2.5 kB
{ "name": "sodiumjs", "version": "3.0.7", "description": "A Functional Reactive Programming (FRP) library for JavaScript", "author": "Stephen Blackheath", "license": "BSD-3-Clause", "homepage": "https://github.com/SodiumFRP/sodium-typescript", "repository": { "type": "git", "url": "https://github.com/SodiumFRP/sodium-typescript.git" }, "bugs": { "url": "https://github.com/SodiumFRP/sodium-typescript/issues" }, "keywords": [ "frp", "functional", "reactive", "typescript", "sodium" ], "main": "dist/sodium.cjs.js", "module": "dist/sodium.esm.js", "typings": "./dist/typings/Lib.d.ts", "scripts": { "install:example": "cd example && npm install", "clean:all": "npm-run-all clean clean:example", "build:all": "npm-run-all build build:example", "clean": "rimraf ./dist", "build": "npm-run-all clean rollup:build:umd rollup:build typings:emit", "typings:emit": "tsc --emitDeclarationOnly true", "build:example": "npm-run-all clean:example _build:example", "_build:example": "cd example && npm run build", "clean:example": "cd example && npm run clean", "dev": "npm-run-all -s clean -p rollup:watch", "rollup:build": "cross-env NODE_ENV=production rollup -c", "rollup:build:umd": "cross-env NODE_ENV=production rollup -c rollup.config.umd.js", "rollup:watch": "cross-env NODE_ENV=production rollup -c -w", "test": "jest", "prepublishOnly": "npm run build" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json" ] }, "devDependencies": { "@types/jest": "23.3.1", "@types/node": "^10.9.4", "cross-env": "^5.2.0", "fantasy-laws": "^1.1.0", "jest": "23.5.0", "jsverify": "^0.8.3", "live-server": "1.2.0", "minify": "3.0.5", "npm-run-all": "4.1.3", "rimraf": "^2.6.2", "rollup": "0.65.0", "rollup-plugin-replace": "2.0.0", "rollup-plugin-typescript2": "0.17.0", "rollup-plugin-uglify": "5.0.2", "sanctuary": "0.15.0", "ts-jest": "23.1.4", "ts-node": "7.0.1", "tslib": "1.9.3", "typescript": "^3.0.3", "uglify-es": "3.3.10" }, "dependencies": { "typescript-collections": "^1.3.2", "sanctuary-type-classes": "^9.0.0" } }