-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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": "@slaus/simple_streams",
"version": "1.0.0",
"description": "Another reactive streams lib resembling Flyd, Bacon, RxJS with topological sort to solve \"diamond\" problems.",
"main": "index.js",
"scripts": {
"create_macro": "ts-creator ./factory.ts -o stream_macro.ts",
"macro_test": "macro-ts build",
"test_streams_types": "ts-mocha --timeout 5000 ./test/streams_types/index.ts",
"test_streams": "ts-mocha ./test/streams/stream.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlavMFM/simple_streams.git"
},
"keywords": [
"stream",
"streams",
"reactive"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlavMFM/simple_streams/issues"
},
"homepage": "https://github.com/SlavMFM/simple_streams#readme",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/deep-equal": "^1.0.1",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"chai": "^4.3.4",
"deep-equal": "^2.0.5",
"eslint": "^7.22.0",
"ts-creator": "^1.2.5",
"ts-mocha": "^8.0.0",
"ts-morph": "^10.0.2",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/node": "^14.14.36"
}
}