-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.49 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "streamlets",
"version": "0.5.1",
"description": "protocol and utilities for light-weight data streams",
"keywords": [
"stream",
"reactive",
"FRP",
"observable",
"iterable"
],
"main": "dist/commonjs/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"targets": {
"main": false,
"module": false,
"types": false
},
"scripts": {
"start": "ts-node ./sample",
"test": "mocha -r ./conf/test src/**/*.test.ts src/**/*.test.tsx",
"build-commonjs": "tsc -p conf/typescript/commonjs.json",
"build-es6": "tsc -p conf/typescript/es6.json",
"build": "npm run build-commonjs && npm run build-es6",
"pack": "rollup -c conf/rollup/es6.js && rollup -c conf/rollup/es5.js",
"cov:inst": "nyc instrument --compact false src .instrumented",
"cov:gen": "nyc npm run test",
"cov:view": "nyc npm run test && npm run cov:clean",
"cov:travis": "nyc npm run test && npx codecov",
"cov:clean": "rm -fr ./.nyc_output && rm -fr ./coverage",
"bench:perf": "ts-node ./benchmark/perf",
"bench:mem": "node -r ts-node/register --expose-gc ./benchmark/mem",
"bench:bundle": "cd /tmp && rm -fr ./streamlet-bundle-size-benchmark && git clone git@github.com:loreanvictor/streamlet-bundle-size-benchmark.git >/dev/null 2>/dev/null && cd streamlet-bundle-size-benchmark && rm -fr ./package-lock.json && npm i >/dev/null 2>/dev/null && npm start && cd .. && rm -fr ./streamlet-bundle-size-benchmark",
"bench": "npm run bench:perf && npm run bench:mem && npm run bench:bundle"
},
"files": [
"dist/es6",
"dist/commonjs",
"dist/bundles"
],
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/streamlet.git"
},
"author": "Eugene Ghanizadeh Khoub <ghanizadeh.eugene@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/streamlet/issues"
},
"homepage": "https://github.com/loreanvictor/streamlet#readme",
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@parcel/config-default": "^2.0.0",
"@parcel/core": "^2.0.0",
"@parcel/fs": "^2.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/benchmark": "^2.1.1",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/estree": "^0.0.47",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"@types/sinon": "^10.0.4",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"benchmark": "^2.1.4",
"callbag-common": "^0.1.8",
"callbag-subject": "^2.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"fetch-mock": "^9.11.0",
"isomorphic-fetch": "^3.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"nyc-config-tsx": "^0.1.0",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"rxjs": "^7.5.4",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"sleep-promise": "^9.1.0",
"table": "^6.7.2",
"test-callbag-jsx": "^0.4.1",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"nyc": {
"extends": "nyc-config-tsx",
"all": true,
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"src/**/test/*",
"src/types/*"
],
"reporter": [
"text",
"lcov"
]
}
}