-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "websocket-remote-control-server",
"version": "0.0.4",
"description": "Server-side of Websocket-remote-control, a library to link two devices and exchange info.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"build": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"prepublish": "npm run build",
"publish": "git push origin --tags && git push origin",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Cambalab/websocket-remote-control-server"
},
"author": "Camba <[email protected]>",
"homepage": "https://github.com/Cambalab/websocket-remote-control-server/tree/master",
"bugs": {
"url": "https://github.com/Cambalab/websocket-remote-control-server/issues"
},
"license": "GPL-3.0",
"dependencies": {
"socket.io": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@rollup/plugin-node-resolve": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.1",
"rollup": "^1.29.1",
"rollup-plugin-babel": "^4.3.3"
},
"babel": {
"presets": [
[
"@babel/env",
{
"modules": false
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}