-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "monoflux",
"version": "1.0.2",
"description": "Stream processing for JS simplified",
"keywords": [
"stream",
"flux",
"mono",
"generator",
"rxjs",
"reactor"
],
"author": "David Duwaer",
"license": "MIT",
"homepage": "https://github.com/Artiry/monoflux#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Artiry/monoflux.git"
},
"bugs": {
"url": "https://github.com/Artiry/monoflux/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"clear": "rimraf dist",
"build": "npm run clear && tsc",
"pretest": "npm run build",
"build-dev": "npm run clear && tsc --sourceMap",
"test": "npm run build-dev && nyc mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "npm install && npm run build && npm run test"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/moment-timezone": "^0.5.30",
"@types/moxios": "^0.4.10",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"mocha": "10.1.0",
"moxios": "^0.4.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
}
}