-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "webstomp-obs",
"version": "1.5.0",
"description": "Stomp over websocket using observable",
"main": "dist/webstompobs.node.js",
"typings": "./types/index.d.ts",
"scripts": {
"dev": "webpack --mode development --config webpack.dev.js",
"build": "webpack -p --mode production --config webpack.prod.js",
"test": "mocha --opts mocha.opts",
"test:auto": "npm run test --watch",
"prepublish": "npm run build && in-publish || not-in-publish"
},
"keywords": [
"typescript",
"stomp",
"webstomp",
"webstompobs",
"websocket",
"observable"
],
"files": [
"types",
"src",
"dist",
"*.md",
"LICENCE"
],
"author": "F. Pozzobon",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/fpozzobon/webstomp-obs.git"
},
"bugs": {
"url": "https://github.com/fpozzobon/webstomp-obs/issues"
},
"homepage": "https://github.com/fpozzobon/webstomp-obs#readme",
"dependencies": {
"rxjs": "^5.5.6"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/es6-shim": "^0.31.35",
"@types/mocha": "^2.2.48",
"@types/sinon": "^4.3.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.18",
"in-publish": "^2.0.0",
"mocha": "^5.0.1",
"sinon": "^5.0.0",
"source-map-loader": "^0.2.3",
"ts-lint": "^4.5.1",
"ts-loader": "^4.0.0",
"ts-node": "^5.0.0",
"tslint": "^4.4.2",
"tslint-loader": "^3.4.2",
"typescript": "^2.7.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9",
"webpack-merge": "^4.1.2"
}
}