-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
116 lines (116 loc) · 4.28 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
113
114
115
116
{
"author": "Nicholas Jamieson <[email protected]>",
"bugs": {
"url": "https://github.com/cartant/rxjs-marbles/issues"
},
"dependencies": {
"fast-equals": "^2.0.0",
"rxjs-report-usage": "^1.0.4"
},
"description": "An RxJS marble testing library for any test framework",
"devDependencies": {
"@angular/compiler": "^11.0.0",
"@angular/core": "^11.0.0",
"@cartant/tslint-config": "^2.0.0",
"@cartant/tslint-config-etc": "^2.0.0",
"@cartant/tslint-config-rxjs": "^2.0.0",
"@types/chai": "^4.1.2",
"@types/jasmine": "^3.0.0",
"@types/jest": "^26.0.0",
"@types/mocha": "^8.0.0",
"@types/sinon": "^10.0.0",
"@types/tape": "^4.2.30",
"ava": "^2.0.0",
"chai": "^4.1.2",
"cpy-cli": "^3.0.0",
"cross-env": "^7.0.0",
"husky": "^7.0.0",
"jasmine": "^3.0.0",
"jest": "^26.0.0",
"lint-staged": "^11.0.0",
"mkdirp": "^1.0.0",
"mocha": "^9.0.0",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"rxjs": "^7.0.0",
"rxjs-tslint-rules": "^4.0.0",
"sinon": "^11.0.0",
"tape": "^5.0.0",
"ts-loader": "^8.0.0",
"tslint": "^6.0.0",
"tslint-etc": "^1.5.2",
"typescript": "~4.3.2",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0",
"webpack-rxjs-externals": "^2.0.0",
"zone.js": "~0.11.0"
},
"es2015": "./dist/esm2015/index.js",
"homepage": "https://github.com/cartant/rxjs-marbles",
"jest": {
"testRegex": "(fixtures/jest/.*-spec)\\.jsx?$",
"testURL": "http://localhost/",
"transform": {},
"moduleFileExtensions": [
"js",
"json",
"jsx"
]
},
"keywords": [
"ava",
"jasmine",
"jest",
"marble",
"marbles",
"mocha",
"rxjs",
"tape",
"test",
"testing"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "prettier --write"
},
"main": "./dist/index.js",
"module": "./dist/esm5/index.js",
"name": "rxjs-marbles",
"optionalDependencies": {},
"peerDependencies": {
"rxjs": "^7.0.0"
},
"private": true,
"publishConfig": {
"tag": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/cartant/rxjs-marbles.git"
},
"scripts": {
"dist": "yarn run lint && yarn run dist:build && yarn run dist:copy",
"dist:build": "yarn run dist:clean && tsc -p tsconfig-dist-cjs.json && tsc -p tsconfig-dist-esm2015.json && tsc -p tsconfig-dist-esm5.json && yarn run dist:bundle",
"dist:bundle": "webpack --config webpack.config.js && webpack --config webpack.config-ava.js && webpack --config webpack.config-jasmine.js && webpack --config webpack.config-jest.js && webpack --config webpack.config-mocha.js && webpack --config webpack.config-tape.js",
"dist:clean": "rimraf dist",
"dist:copy": "node scripts/pack.js && cpy CHANGELOG.md LICENSE README.md dist/",
"lint": "tslint --project tsconfig.json source/**/*.ts",
"pack": "node scripts/pack.js",
"prepare": "husky install",
"prepublishOnly": "yarn run test",
"prettier": "prettier --write \"./{fixtures,scripts,source}/**/*.{js,json,ts,tsx}\"",
"prettier:ci": "prettier --check \"./{fixtures,scripts,source}/**/*.{js,json,ts,tsx}\"",
"test": "yarn run lint && yarn run test:build && cross-env FAILING=0 yarn run test:ava && cross-env FAILING=0 yarn run test:jasmine && cross-env FAILING=0 yarn run test:jasmine-angular && cross-env FAILING=0 yarn run test:jest && cross-env FAILING=0 yarn run test:mocha && cross-env FAILING=0 yarn run test:tape",
"test:ava": "tsc -p ./fixtures/ava/tsconfig.json && node scripts/rewrite.js && ava --verbose",
"test:build": "yarn run dist:clean && tsc -p tsconfig-dist-cjs.json",
"test:debug": "yarn run lint && yarn run test:build && cross-env FAILING=0 yarn run test:mocha",
"test:jasmine": "tsc -p ./fixtures/jasmine/tsconfig.json && jasmine ./fixtures/jasmine/*-spec.js",
"test:jasmine-angular": "tsc -p ./fixtures/jasmine-angular/tsconfig.json && jasmine ./fixtures/jasmine-angular/*-spec.js",
"test:jest": "tsc -p ./fixtures/jest/tsconfig.json && jest",
"test:mocha": "tsc -p ./fixtures/mocha/tsconfig.json && mocha ./fixtures/mocha/*-spec.js",
"test:tape": "tsc -p ./fixtures/tape/tsconfig.json && tape ./fixtures/tape/*-spec.js"
},
"types": "./dist/index.d.ts",
"unpkg": "./dist/bundles/rxjs-marbles.min.umd.js",
"version": "7.0.1"
}