-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
80 lines (80 loc) · 2.14 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
{
"name": "jasmine-marbles",
"description": "Marble testing helpers for RxJS and Jasmine",
"keywords": [
"jasmine",
"rxjs",
"ngrx",
"testing"
],
"version": "0.9.2",
"module": "index.js",
"es2015": "es6/index.js",
"main": "bundles/jasmine-marbles.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/synapse-wireless-labs/jasmine-marbles.git"
},
"homepage": "https://github.com/synapse-wireless-labs/jasmine-marbles#readme",
"bugs": "https://github.com/synapse-wireless-labs/jasmine-marbles/issues",
"license": "MIT",
"scripts": {
"clean": "rimraf release",
"build:ts": "tsc",
"build:es6": "tsc -p tsconfig.es6.json",
"build:docs": "cpy LICENSE package.json README.md release",
"prebuild": "npm run clean",
"build": "npm run build:ts && npm run build:umd && npm run build:docs",
"postversion": "npm run build",
"build:umd": "npm run build:es6 && rollup -c rollup.config.js",
"test": "jest",
"precommit": "yarn run prettier",
"prettier": "prettier --parser typescript --single-quote --trailing-comma all --write \"./**/*.ts\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.spec",
"**/spec/**/*"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"text-summary",
"html"
]
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.106",
"@types/node": "^14.17.0",
"babel-jest": "^27.0.6",
"conventional-changelog": "^3.1.12",
"conventional-changelog-cli": "^2.0.25",
"cpy-cli": "^1.0.1",
"husky": "^0.14.3",
"jasmine": "^3.7.0",
"jest": "^27.0.6",
"jest-jasmine2": "^27.0.6",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"rimraf": "^2.6.1",
"rollup": "^2.49.0",
"rxjs": "^7.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.0"
},
"peerDependencies": {
"rxjs": "^7.0.0"
},
"dependencies": {
"lodash": "^4.17.20"
}
}