UNPKG

2.12 kBJSONView Raw
1{
2 "name": "jasmine-marbles",
3 "description": "Marble testing helpers for RxJS and Jasmine",
4 "keywords": [
5 "jasmine",
6 "rxjs",
7 "ngrx",
8 "testing"
9 ],
10 "version": "0.8.4",
11 "module": "index.js",
12 "es2015": "es6/index.js",
13 "main": "bundles/jasmine-marbles.umd.js",
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/synapse-wireless-labs/jasmine-marbles.git"
17 },
18 "homepage": "https://github.com/synapse-wireless-labs/jasmine-marbles#readme",
19 "bugs": "https://github.com/synapse-wireless-labs/jasmine-marbles/issues",
20 "license": "MIT",
21 "scripts": {
22 "clean": "rimraf release",
23 "build:ts": "tsc",
24 "build:es6": "tsc -p tsconfig.es6.json",
25 "build:docs": "cpy LICENSE package.json README.md release",
26 "prebuild": "npm run clean",
27 "build": "npm run build:ts && npm run build:umd && npm run build:docs",
28 "postversion": "npm run build",
29 "build:umd": "npm run build:es6 && rollup -c rollup.config.js",
30 "test": "jest",
31 "precommit": "yarn run prettier",
32 "prettier": "prettier --parser typescript --single-quote --trailing-comma all --write \"./**/*.ts\"",
33 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
34 },
35 "nyc": {
36 "extension": [
37 ".ts"
38 ],
39 "exclude": [
40 "**/*.spec",
41 "**/spec/**/*"
42 ],
43 "include": [
44 "**/*.ts"
45 ]
46 },
47 "devDependencies": {
48 "@babel/core": "^7.14.6",
49 "@babel/preset-env": "^7.14.7",
50 "@babel/preset-typescript": "^7.14.5",
51 "@types/jest": "^26.0.23",
52 "@types/lodash": "^4.14.106",
53 "@types/node": "^14.17.0",
54 "babel-jest": "^27.0.6",
55 "conventional-changelog": "^3.1.12",
56 "conventional-changelog-cli": "^2.0.25",
57 "cpy-cli": "^1.0.1",
58 "husky": "^0.14.3",
59 "jasmine": "^3.7.0",
60 "jest": "^27.0.6",
61 "jest-jasmine2": "^27.0.6",
62 "nyc": "^15.1.0",
63 "prettier": "^2.3.0",
64 "rimraf": "^2.6.1",
65 "rollup": "^0.41.4",
66 "rxjs": "^6.5.3",
67 "ts-node": "^9.1.0",
68 "typescript": "^4.1.0"
69 },
70 "peerDependencies": {
71 "rxjs": "^6.5.3"
72 },
73 "dependencies": {
74 "lodash": "^4.17.20"
75 }
76}