UNPKG

1.91 kBJSONView Raw
1{
2 "name": "funfix-core",
3 "description": "Sub-package of Funfix exposing primitive interfaces and data types belonging into a standard library",
4 "version": "7.0.1",
5 "main": "dist/umd.js",
6 "module": "dist/index.js",
7 "es5module": "dist/es5.js",
8 "typings": "dist/index.d.ts",
9 "scripts": {
10 "lint": "flow check && tslint --project tsconfig.json -e **/node_modules/** -e **/dist/** -t codeFrame src/**/*.ts",
11 "doc": "../../scripts/generate-docs.js .",
12 "clean": "rimraf dist && rimraf coverage && rimraf .nyc_output",
13 "prebuild": "npm run clean",
14 "build": "tsc && npm run rollup && npm run doc",
15 "start": "node ../../node_modules/.bin/tsc-watch --onSuccess 'npm run rollup'",
16 "test": "mocha --opts mocha.opts",
17 "test:watch": "mocha --opts mocha.opts --watch",
18 "test:prod": "npm run lint && nyc mocha --opts mocha.opts --reporter dot",
19 "rollup": "rollup -c && npm run fix-modules && npm run fix-types",
20 "fix-modules": "node ../../scripts/fix-es5.js dist/es5.js",
21 "fix-types": "../../scripts/fix-types.js ."
22 },
23 "files": [
24 "dist",
25 "src",
26 "index.js.flow"
27 ],
28 "dependencies": {
29 "funland": "^0.1.4"
30 },
31 "repository": {
32 "type": "git",
33 "url": "https://github.com/funfix/funfix.git"
34 },
35 "author": "Alexandru Nedelcu <noreply@alexn.org>",
36 "license": "Apache-2.0",
37 "engines": {
38 "node": ">=6.0.0"
39 },
40 "nyc": {
41 "include": [
42 "src/**/*.ts",
43 "src/**/*.tsx"
44 ],
45 "extension": [
46 ".ts",
47 ".tsx"
48 ],
49 "require": [
50 "ts-node/register"
51 ],
52 "reporter": [
53 "lcov",
54 "json",
55 "text",
56 "html"
57 ],
58 "sourceMap": true,
59 "instrument": true
60 },
61 "keywords": [
62 "fp",
63 "functional-programming",
64 "concurrency",
65 "asynchrony",
66 "future",
67 "promise",
68 "io",
69 "task",
70 "monad",
71 "applicative",
72 "option",
73 "either"
74 ]
75}