This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
113 lines (113 loc) · 2.63 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
{
"name": "unexpected-rxjs",
"version": "0.2.4",
"description": "RxJS Assertions for Unexpected",
"keywords": [
"assert",
"assertions",
"expect",
"observable",
"rxjs",
"unexpected",
"unexpected-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/IBM/unexpected-rxjs.git"
},
"license": "Apache-2.0",
"author": "Christopher Hiller <christopher.hiller@ibm.com> (https://boneskull.com/)",
"files": [
"dist/"
],
"main": "dist/unexpected-rxjs.cjs.js",
"module": "dist/unexpected-rxjs.esm.js",
"browser": "dist/unexpected-rxjs.umd.js",
"scripts": {
"build": "rollup -c",
"clean": "git clean -fdx dist",
"dev": "rollup -c -w",
"prepublishOnly": "npm run clean && npm run build",
"release": "standard-version",
"pretest": "npm run build",
"test": "nyc mocha \"test/**/*.spec.js\"",
"posttest": "markdownlint README.md && eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{yml,md}": [
"prettier --write",
"git add"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": "> 3%",
"node": "8.0.0"
},
"modules": false
}
]
]
},
"prettier": {
"bracketSpacing": false,
"endOfLine": "auto",
"singleQuote": true
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-semistandard": "^14.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"markdownlint-cli": "^0.17.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"proxyquire": "^2.1.1",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rxjs": "^6.5.2",
"sinon": "^7.3.2",
"standard-version": "^6.0.1",
"unexpected": "^11.6.0",
"unexpected-sinon": "^10.11.2"
},
"peerDependencies": {
"rxjs": "^6.0.0",
"unexpected": "*"
},
"engines": {
"node": ">=8"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write CHANGELOG.md"
}
}
}