-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"name": "@rxtk/streams",
"version": "0.3.1",
"description": "🐠 RxJS operators and utilities for worth with streams (node.js ReadableStream, pipes, etc.)",
"main": "dist/index.js",
"repository": "https://github.com/rxtoolkit/streams.git",
"author": "Buccaneer LLC <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rxtoolkit/streams/issues"
},
"keywords": [],
"directories": {
"src": "src"
},
"files": [
"dist"
],
"scripts": {
"build": "BABEL_ENV=build babel src --out-dir dist --source-maps --extensions .js --config-file ./babel.config.js --delete-dir-on-start --no-comments",
"test": "mocha --require @babel/register --require @babel/polyfill \"./{,!(node_modules)/**/}*.test.js\" --exit --require source-map-support"
},
"dependencies": {
"lodash": "^4.17.20",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.13",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.13",
"@babel/register": "^7.12.13",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chai": "^4.2.0",
"commander": "^7.0.0",
"csv-parse": "^5.0.4",
"mocha": "^8.2.1",
"rxjs-marbles": "^6.0.1",
"semantic-release-export-data": "^1.0.1",
"sinon": "^9.2.4"
},
"engines": {
"node": ">= 12.0.0"
}
}