-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "superpipe",
"version": "0.14.0",
"description": "The missing pipeline for functional programming",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"src",
"dist",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"test": "mocha --require babel-core/register",
"watch": "nodemon -w ./src -w ./test -x 'npm run coverage'",
"browser": "TEST_ENV=browser karma start karma.conf.js",
"local-browser": "karma start karma.conf.js",
"coverage": "nyc npm test",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:cjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "cross-env BABEL_ENV=rollup NODE_ENV=development rollup -c -o dist/alfa.js",
"build:umd:min": "cross-env BABEL_ENV=rollup NODE_ENV=production rollup -c -o dist/alfa.min.js",
"build": "npm run build:es && npm run build:cjs && npm run build:umd && npm run build:umd:min"
},
"nyc": {
"reporter": [
"lcov",
"html",
"text"
]
},
"devDependencies": {
"ajv": "6.5.2",
"assume": "2.1.0",
"babel-cli": "6.26.0",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"chai": "4.1.2",
"coveralls": "3.0.2",
"cross-env": "5.2.0",
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"karma": "3.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-mocha": "1.3.0",
"karma-sauce-launcher": "git+https://github.com/lsm/karma-sauce-launcher.git#1.2.1",
"karma-webpack": "3.0.0",
"mocha": "5.2.0",
"mocha-lcov-reporter": "1.3.0",
"nodemon": "1.18.3",
"nyc": "12.0.2",
"prettier": "1.14.2",
"rollup": "0.64.1",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-commonjs": "9.1.5",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-uglify": "4.0.0",
"sauce-connect-launcher": "1.2.4",
"webpack": "4.16.5"
},
"repository": {
"type": "git",
"url": "git://github.com/lsm/superpipe.git"
},
"keywords": [
"flow",
"stream",
"pipe",
"pipeline",
"event",
"ioc",
"frp",
"functional",
"reactive",
"monad"
],
"engines": {
"node": ">= 0.10.0"
},
"author": "lsm <[email protected]> (https://github.com/lsm)",
"license": "MIT"
}