-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.06 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@lukinco/adonis-websocket-client",
"version": "1.0.12",
"description": "Websocket client for AdonisJs",
"main": "dist/Ws.es.js",
"module": "dist/Ws.es.js",
"browser": "dist/Ws.browser.js",
"scripts": {
"lint": "standard",
"build:esm": "rollup -c --esm",
"build:umd": "rollup -c --umd && rollup -c --umd-production",
"build": "npm run build:umd && npm run build:esm",
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"test:karma:local": "karma start",
"test:karma": "node ./bin/karma.js",
"test:qunit": "npm run build:esm && node ./bin/qunit.js",
"test": "npm run test:karma && npm run test:qunit",
"postversion": "npm publish --access=public"
},
"keywords": [
"websocket",
"adonisjs",
"adonis",
"ws",
"socketio"
],
"author": "virk",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.2",
"cz-conventional-changelog": "^2.1.0",
"got": "^8.3.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-japa": "^1.0.2",
"karma-rollup-preprocessor": "^5.1.1",
"karma-sourcemap-loader": "^0.3.7",
"ngrok": "^3.0.0",
"opn": "^5.3.0",
"pify": "^3.0.0",
"puppeteer": "^1.2.0",
"rollup": "^0.57.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"standard": "^11.0.1",
"ws": "^5.0.0"
},
"dependencies": {
"@adonisjs/websocket-packet": "^1.0.6",
"emittery": "^0.3.0",
"query-string": "^6.0.0"
},
"standard": {
"globals": [
"test",
"group",
"QUnit"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}