-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.24 KB
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
{
"name": "websocket-heartbeat-js",
"version": "1.1.3",
"description": "websocket heartbeat",
"main": "./dist/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "node test/unit/server.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build": "node_modules/webpack/bin/webpack.js",
"lint": "eslint .",
"fix": "eslint --fix ."
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zimv/websocket-heartbeat-js.git"
},
"keywords": [
"zimv",
"websocket",
"heartbeat"
],
"author": "zimv",
"license": "MIT",
"files": [
"dist",
"lib"
],
"bugs": {
"url": "https://github.com/zimv/websocket-heartbeat-js/issues"
},
"homepage": "https://github.com/zimv/websocket-heartbeat-js#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.5",
"eslint": "^5.6.1",
"mocha": "^5.2.0",
"opn": "^6.0.0",
"pre-commit": "^1.2.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"ws": "^8.5.0"
},
"babel": {
"presets": [
"env"
],
"plugins": []
}
}