forked from SmartWalkieOrg/voiceping-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.86 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
77
78
{
"name": "voiceping-router",
"version": "1.0.0",
"description": "",
"main": "./dist/voiceping.js",
"dependencies": {
"debug": "*",
"dotenv": "16.0.0",
"jwt-simple": "0.5.6",
"lodash": "4.17.14",
"notepack": "0.0.2",
"q": "1.4.1",
"redis": "2.8.0",
"winston": "0.8.3",
"ws": "5.2.0"
},
"devDependencies": {
"@types/node": "8.0.47",
"@types/ws": "3.2.0",
"babel-eslint": "8.0.1",
"chai": "2.3.0",
"eslint": "3.0.0",
"eslint-config-airbnb-es5": "1.2.0",
"eslint-plugin-react": "7.4.0",
"mocha": "5.0.5",
"tsc-watch": "5.0.3",
"tslint": "5.8.0",
"typescript": "3.5.1"
},
"scripts": {
"start": "node dist/app.js",
"dev": "tsc-watch --onSuccess \"node ./dist/app.js\"",
"build": "rm -rf dist && npm run compile",
"build:watch": "npm run lint && tsc --watch",
"compile": "npm run lint && tsc",
"eslint": "eslint *.js src/**/*.js test/**/*.js --fix",
"lint": "npm run tslint && npm run eslint",
"test": "mocha",
"test:watch": "mocha --reporter nyan --watch",
"transpile": "npm run compile",
"tsc": "tsc --watch",
"tslint": "tslint --format verbose --project \"tsconfig.json\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SmartWalkieOrg/voiceping-router"
},
"keywords": [
"PTT",
"push to talk",
"walkie talkie",
"voiceping",
"smartwalkie",
"smartwalkietalkie",
"library",
"SDK"
],
"author": "Smart Walkie",
"contributors": [
{
"name": "Muhammad Muthi Dhian Pratama",
"email": "[email protected]"
},
{
"name": "Iqbal N",
"email": "[email protected]"
},
{
"name": "Sirius Dely",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"node": "8.16.0",
"npm": "6.4.1"
}
}