-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "wamp-server",
"version": "0.0.9",
"description": "WAMP Router Server",
"main": "index.js",
"author": "Ivaylo Ivanov <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/ivaylopivanov/wamp-server"
},
"license": "MIT",
"keywords": [
"wamp",
"server",
"publish",
"subscribe",
"rpc",
"router",
"dealer",
"broker",
"typescript"
],
"scripts": {
"build-tests": "node_modules/.bin/gulp build-tests",
"clean-tests": "node_modules/.bin/gulp clean",
"dev": "node_modules/.bin/gulp watch",
"coverage": "npm run build-tests && istanbul cover node_modules/.bin/_mocha --test ./test/**/*.js && npm run clean-tests",
"coveralls": "npm run build-tests && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"release": "node_modules/.bin/gulp release",
"lint": "./node_modules/.bin/tslint --project tsconfig.json",
"test": "npm run lint && npm run build-tests && node_modules/.bin/mocha --exit ./test/**/*.js && npm run clean-tests"
},
"engines": {
"node": ">= 7.5.0"
},
"devDependencies": {
"@types/autobahn": "0.9.40",
"@types/chai": "4.1.6",
"@types/debug": "0.0.31",
"@types/mocha": "5.2.5",
"@types/ws": "6.0.2",
"autobahn": "18.3.2",
"chai": "4.2.0",
"coveralls": "3.0.2",
"gulp": "3.9.1",
"gulp-clean": "0.4.0",
"gulp-jsbeautify": "0.1.1",
"gulp-sourcemaps": "2.6.4",
"gulp-typescript": "5.0.0-alpha.3",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"run-sequence": "2.2.1",
"tslint": "5.11.0",
"typescript": "3.1.1"
},
"dependencies": {
"debug": "4.0.1",
"ws": "6.1.0"
}
}