-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.99 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
{
"name": "wampus",
"version": "0.4.1",
"description": "WAMP client for JavaScript",
"main": "index.js",
"repository": "https://github.com/GregRos/wampus",
"author": "GregRos",
"license": "MIT",
"keywords": [
"wamp",
"rpc",
"promise",
"esnext",
"typescript",
"rxjs"
],
"private": false,
"scripts": {
"clean": "rm -rf dist/",
"build": "tsc -b",
"build:clean": "npm-run-all clean build",
"test:node:unit": "nyc ava --config ava.unit.js",
"test:node:integration": "ava --config ava.integration.js",
"test:node:all": "nyc ava --config ava.all.js",
"test:browser": "node ./dist/tools/browser-test-runner/index.js",
"test": "npm-run-all test:node:all test:browser",
"docs": "node dist/tools/run.js",
"lint:project=lib": "tslint -p src/lib/tsconfig.json -t stylish",
"lint:project=test": "tslint -p src/test/tsconfig.json -t stylish",
"lint:project=tools": "tslint -p src/tools/tsconfig.json -t stylish",
"lint": "npm-run-all --parallel 'lint:project=*'",
"lint:fix": "npm-run-all --parallel 'lint:project=* --fix'",
"package:build": "npm-run-all lint build:clean test && node dist/tools/publish.js",
"package:publish": "yarn run package:build && (cd .publish; yarn publish)",
"prereq:router": "bash ./test-scripts/install-router.sh",
"prereq:browser": "cat ./chromium-deps.txt | xargs sudo apt install -y"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/karma": "^4.4.0",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/node": "^12.11.7",
"@types/puppeteer": "^2.0.1",
"@types/shelljs": "^0.8.5",
"@types/ws": "^5.1.2",
"ava": "^2.4.0",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"globby": "^10.0.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.4.0",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"puppeteer": "^2.1.1",
"retarget-sourcemaps-after-move": "^0.2.0",
"rewiremock": "^3.13.9",
"shelljs": "^0.8.3",
"source-map-loader": "^0.2.4",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.20.1",
"tslint-config-gregros": "^1.8.0",
"typedoc": "^0.15.6",
"typedoc-plugin-example-tag": "^1.0.2",
"typedoc-plugin-external-module-name": "^2.1.0",
"typedoc-plugin-internal-external": "^2.0.2",
"typescript": "^3.7.4",
"webpack": "^4.42.0",
"ws": "^7.2.3"
},
"dependencies": {
"isomorphic-ws": "^4.0.1",
"lodash": "^4.17.15"
},
"peerDependencies": {
"rxjs": "^6.5.5",
"transcurse": "^0.3.0",
"typed-wamp": "^0.2.2"
},
"optionalDependencies": {},
"nyc": {
"produce-source-map": true,
"include": [
"dist/lib/**/*.js",
"src/lib/**/*.ts"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": true
},
"typings": "index"
}