-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "vue-wamp",
"version": "3.1.6",
"description": "WAMP protocol wrapper library for Vue",
"license": "MIT",
"author": "Lajos Bencz <[email protected]>",
"private": false,
"homepage": "https://github.com/lajosbencz/vue-wamp#readme",
"keywords": [
"vue",
"wamp",
"autobahn",
"websocket"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lajosbencz/vue-wamp"
},
"bugs": {
"url": "https://github.com/lajosbencz/vue-wamp/issues"
},
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "npx eslint src/ test/",
"lint:fix": "npx eslint --fix src/ test/",
"test": "jest --no-cache --config jest.config.js"
},
"husky": {
"hooks": {
"pre-commit": "echo \"npm test\""
}
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@vue/test-utils": "latest",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-vue": "^6.1.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"vue": "^2",
"vue-template-compiler": "^2.6.11",
"fastify": "^2.11.0",
"fastify-wamp-router": "^0.4.0"
},
"dependencies": {
"autobahn": "^20.2.2",
"when": "^3.7.8",
"ws": "^7"
},
"peerDependencies": {
"vue": "^2"
}
}