-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "rxjs-websockets",
"version": "9.0.0",
"type": "module",
"description": "rxjs 7 websockets library",
"author": "insidewhy <github@chilon.net>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/insidewhy/rxjs-websockets.git"
},
"keywords": [
"angular",
"angular2",
"redux",
"redux-observable",
"rxjs",
"vuex",
"websocket",
"websockets"
],
"main": "dist.es5/index.js",
"module": "dist.es5m/index.js",
"es2015": "dist.es2015/index.js",
"typings": "dist.es2015/index",
"sideEffects": false,
"scripts": {
"prepublishOnly": "yarn build",
"build": "yarn build-modern && yarn build-es5 && yarn build-es5m",
"build-modern": "tsc -p src",
"build-es5": "tsc -p src --target es5 --outDir dist.es5",
"build-es5m": "yarn build-es5 -m es2015 --outDir dist.es5m",
"build-watch": "yarn build-es5 -w",
"clean": "rimraf 'dist*'",
"lint": "eslint 'src/*.ts'",
"lint-fix": "yarn lint --fix",
"run-prettier": "prettier 'src/*.ts' '*.md'",
"validate-prettiness": "yarn run-prettier -c",
"make-prettier": "yarn run-prettier --write",
"test": "yarn jest",
"watch": "yarn build-es5 && concurrently 'yarn build-watch' 'yarn jest-watch'",
"validate": "yarn test && yarn lint && yarn validate-prettiness",
"jest-watch": "yarn jest --watch"
},
"peerDependencies": {
"rxjs": "^7.0.0"
},
"devDependencies": {
"@types/jest": "29.5.12",
"concurrently": "8.2.2",
"eslint": "9.4.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.0.11",
"jest": "29.7.0",
"prettier": "3.3.0",
"pretty-quick": "4.0.0",
"rimraf": "5.0.7",
"rxjs": "7.8.1",
"typescript": "5.4.5",
"typescript-eslint": "^7.10.0"
},
"volta": {
"node": "22.2.0",
"yarn": "1.22.22"
}
}