-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 991 Bytes
/
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
{
"name": "paintbot-client-js",
"version": "1.0.0",
"description": "Cygni Paintbot client in modern JavaScript (ES2020)",
"author": "Johan Horvius <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cygni/paintbot-client-js.git"
},
"private": true,
"engines": {
"node": ">=14.0.0"
},
"type": "module",
"main": "index.js",
"browser": "src/index.js",
"scripts": {
"lint": "eslint .",
"format": "prettier --write **/*.{js,json,md}",
"test": "mocha",
"start": "node --unhandled-rejections=strict paintbot-cli.js"
},
"dependencies": {
"commander": "^7.2.0",
"ws": "^7.4.5"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@types/ws": "^7.4.2",
"eslint": "~7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.3.2",
"prettier": "~2.2.1"
}
}