-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.1 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
79
80
81
82
83
{
"name": "@gamesdonequick/bingosync-api",
"version": "0.0.0-development",
"description": "Programmatically interact with bingosync.com in realtime.",
"main": "build/index.js",
"files": [
"build",
"!build/test",
"!build/lib/localstorage"
],
"scripts": {
"pretest": "npm run lint && npm run build",
"test": "mocha",
"test only": "mocha",
"build": "tsc -p tsconfig.json",
"lint": "npm-run-all -s lint:*",
"lint:prettier": "prettier --list-different \"**/*.{ts,tsx,json,md,yml}\"",
"lint:eslint": "eslint \"./**/*.{ts,tsx}\"",
"fix": "npm-run-all -s fix:*",
"fix:prettier": "prettier --write \"**/*.{ts,tsx,json,md,yml}\"",
"fix:eslint": "npm run lint:eslint -- --fix "
},
"author": "Games Done Quick, LLC <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@gamesdonequick/eslint-config": "^1.0.2",
"@gamesdonequick/prettier-config": "^1.0.1",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.2",
"@types/debug": "^4.1.5",
"@types/fetch-mock": "^7.3.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"@types/node-localstorage": "^1.3.0",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cuid": "^2.1.6",
"eslint": "^6.2.2",
"fast-deep-equal": "^2.0.1",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"mock-socket": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"semantic-release": "^15.13.24",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json,md,yml}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"debug": "^4.1.1",
"eventemitter3": "^4.0.0",
"fetch-mock": "^7.3.9",
"isomorphic-ws": "^4.0.1",
"ky": "^0.12.0",
"ky-universal": "^0.3.0",
"mocha": "^6.2.0",
"node-localstorage": "^1.3.1",
"sinon": "^7.4.1",
"ws": "^7.1.2",
"@types/ws": "^6.0.3"
},
"publishConfig": {
"access": "public"
}
}