-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "dispatcher-worker",
"version": "1.1.0",
"description": "Worker of the dispatching manager",
"main": "dist/index.js",
"repository": "github:comnetunb/dispatcher-worker",
"license": "MIT",
"contributors": [
{
"name": "Matheus Medeiros"
},
{
"name": "Mikael Mello"
}
],
"scripts": {
"build": "tsc",
"dev": "tsnd --watch --respawn src/index.ts",
"start": "node dist/index.js",
"lint": "esw *.js manager dwp_handler --color",
"test": "npm run lint",
"publish": "np"
},
"np": {
"publish": false,
"message": "v%s release"
},
"dependencies": {
"@types/log4js": "^2.3.5",
"@types/node": "^12.7.5",
"@types/rimraf": "^2.0.2",
"@types/socket.io-client": "^1.4.32",
"dispatcher-protocol": "^4.0.0",
"log4js": "^3.0.6",
"rimraf": "~2.6.1",
"socket.io-client": "^2.3.0",
"typescript": "^3.6.3"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-watch": "^3.1.4",
"np": "^7.6.2",
"ts-node-dev": "^1.0.0-pre.43",
}
}