-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 850 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 850 Bytes
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
{
"name": "hollaex-node-lib",
"version": "2.19.4",
"description": "hollaex api and websocket library for nodejs",
"main": "index.js",
"dependencies": {
"file-type": "16.5.2",
"is-base64": "1.1.0",
"lodash": "4.17.13",
"moment": "2.24.0",
"request": "2.88.0",
"request-promise": "4.2.2",
"ws": "7.4.0",
"ws-heartbeat": "1.1.0"
},
"devDependencies": {
"chai": "4.2.0",
"dotenv": "6.2.0",
"eslint": "5.13.0",
"husky": "4.3.8",
"lint-staged": "12.1.3",
"mocha": "5.2.0"
},
"scripts": {
"start": "node index.js",
"test": "mocha test/test.js --timeout 10000",
"lint": "eslint --fix ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/hollaex/hollaex-node-lib"
},
"license": "MIT"
}