-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "vue-nats",
"version": "1.1.9",
"description": "An in-browser WebSocket message bus for NATS applications",
"author": "Antonio Aguilar",
"license": "MIT",
"main": "dist/vue-nats.cjs.js",
"module": "dist/vue-nats.esm.js",
"browser": "dist/vue-nats.umd.js",
"homepage": "https://github.com/antonioaguilar/vue-nats#readme",
"scripts": {
"start": "npm run build",
"build": "rimraf dist && rollup -c",
"dev": "rimraf dist && rollup -c -w",
"register": "bower register vue-nats https://github.com/antonioaguilar/vue-nats.git"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonioaguilar/vue-nats.git"
},
"bugs": {
"url": "https://github.com/antonioaguilar/vue-nats/issues"
},
"keywords": [
"vue",
"message",
"bus",
"nats"
],
"devDependencies": {
"rimraf": "^2.6.2",
"rollup": "^0.63.4",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "3.0.0"
},
"dependencies": {
"setimmediate": "^1.0.5"
}
}