-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "sockhop",
"version": "1.8.5",
"description": "Sockets with messages, pings, etc",
"main": "index.js",
"scripts": {
"test": "mocha",
"build": "node ./build-tools/build-docs.js",
"lint": "npx eslint index.js lib/ test/",
"lint:fix": "npx eslint index.js lib/ test/ --fix",
"lint:test": "npm run lint -s && npm run test -s",
"watch:lint": "nodemon -w index.js -w test/ -x npm run lint -s",
"watch:test": "nodemon -w index.js -w test/ -x npm run test -s",
"dev": "nodemon -w index.js -w test/ -x npm run lint:test -s"
},
"repository": {
"type": "git",
"url": "https://github.com/DaxBot/sockhop"
},
"author": "c0d3",
"license": "MIT",
"dependencies": {
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.8.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-node": "^11.1.0",
"jsdoc-to-markdown": "^7.1.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"sinon": "^15.0.3",
"why-is-node-running": "^2.2.0"
}
}