-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "stompica",
"version": "0.0.7",
"description": "Stomp broker 4 development purposes - accessible via websocket and or raw text socket",
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"dependencies": {
"bindings": "*",
"node-addon-api": "*"
},
"keywords": [
"stomp",
"messagebroker",
"broker",
"websocket"
],
"author": {
"name": "Peter Kiss",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ypetya/stompbroker"
},
"os": [
"linux"
],
"scripts": {
"release": "npm version patch && npm publish && git push --tags",
"preversion": "npm run build",
"build-with-npm-defaults": "npm install",
"build": "npm run pre-build && node-gyp build",
"pre-build": "npm run test && npm run clean && node-gyp configure",
"clean": "rm -rf ./build",
"test": "./test.sh"
},
"license": "AGPL-3.0-or-later"
}