-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "@rxjs-stuff/marbles",
"version": "1.0.0",
"description": "A set of plugins that provide a natural feeling integration with Mocha and Chai for RxJS \"marbles\" testing.",
"keywords": [
"rxjs-marbles",
"rxjs",
"marbles",
"rxjs marbles",
"rxjs marbles testing",
"marbles testing",
"mocha",
"chai",
"mocha marbles",
"chai marbles",
"karma",
"rxjs testing"
],
"author": "Daniel Schaffer <dan@dandoes.net>",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "yarn build:node",
"build:node": "tsc -p tsconfig.build.json",
"build:browser": "webpack --config webpack.config.build.js",
"copy:d.ts": "cp -r ./lib/@types ./.dist",
"copy:package.json": "cp package.json ./.dist",
"copy:md": "cp *.md ./.dist",
"postbuild": "yarn copy:package.json; yarn copy:d.ts; yarn copy:md",
"prepublish:dist": "yarn version && yarn build",
"publish:dist": "cd .dist && yarn publish",
"test:node": "mocha",
"test:browser": "karma start",
"test": "yarn test:node; yarn test:browser --single-run"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.3",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"chai": "^4.2.0",
"karma": "^5.2.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.1.0",
"karma-webpack": "^4.0.2",
"mocha": "^8.1.3",
"rxjs": "^6.6.3",
"ts-custom-error-shim": "^1.0.2",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.3"
}
}