scrabble-cheater 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/cli.js +0 -0
- package/package.json +7 -44
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# ScrabbleCheater [](https://www.npmjs.com/package/scrabble-cheater)
|
|
2
2
|
|
|
3
3
|
This is a simple Scrabble cheating tool designed for Andy's [scrabble-bot](https://github.com/AndyLnd/scrabble-bot) (but can be used for a normal Scrabble game, too).
|
|
4
4
|
|
package/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -9,34 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"description": "A simple Scrabble cheating tool.",
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@evilmartians/lefthook": "1.2.8",
|
|
13
|
-
"@ffflorian/eslint-config": "0.8.3",
|
|
14
|
-
"@ffflorian/prettier-config": "0.1.4",
|
|
15
|
-
"@ffflorian/semantic-release-config": "0.5.2",
|
|
16
|
-
"@semantic-release/changelog": "6.0.2",
|
|
17
|
-
"@semantic-release/git": "10.0.1",
|
|
18
|
-
"@types/jasmine": "4.3.1",
|
|
19
|
-
"@types/node": "~18",
|
|
20
|
-
"@typescript-eslint/eslint-plugin": "4.33.0",
|
|
21
|
-
"@typescript-eslint/parser": "4.33.0",
|
|
22
|
-
"babel-eslint": "10.1.0",
|
|
23
|
-
"eslint": "7.32.0",
|
|
24
|
-
"eslint-config-prettier": "8.6.0",
|
|
25
|
-
"eslint-plugin-import": "2.27.5",
|
|
26
|
-
"eslint-plugin-jasmine": "4.1.3",
|
|
27
|
-
"eslint-plugin-jsdoc": "39.7.5",
|
|
28
|
-
"eslint-plugin-no-unsanitized": "4.0.2",
|
|
29
|
-
"eslint-plugin-prettier": "4.2.1",
|
|
30
|
-
"eslint-plugin-simple-import-sort": "10.0.0",
|
|
31
|
-
"eslint-plugin-sort-keys-fix": "1.1.2",
|
|
32
|
-
"eslint-plugin-typescript-sort-keys": "2.1.0",
|
|
33
|
-
"eslint-plugin-unused-imports": "1.1.5",
|
|
34
|
-
"jasmine": "4.5.0",
|
|
35
|
-
"prettier": "2.8.3",
|
|
36
|
-
"publish-flat": "1.4.1",
|
|
37
12
|
"rimraf": "4.1.2",
|
|
38
|
-
"semantic-release": "20.1.0",
|
|
39
|
-
"ts-node": "10.9.1",
|
|
40
13
|
"typescript": "4.9.5"
|
|
41
14
|
},
|
|
42
15
|
"engines": {
|
|
@@ -59,28 +32,18 @@
|
|
|
59
32
|
"license": "GPL-3.0",
|
|
60
33
|
"main": "index.js",
|
|
61
34
|
"name": "scrabble-cheater",
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
"release": {
|
|
65
|
-
"extends": "@ffflorian/semantic-release-config"
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"directory": "flattened"
|
|
66
37
|
},
|
|
38
|
+
"repository": "https://github.com/ffflorian/node-packages/tree/main/packages/scrabble-cheater",
|
|
67
39
|
"scripts": {
|
|
68
40
|
"build": "tsc",
|
|
69
41
|
"clean": "rimraf dist",
|
|
70
42
|
"dist": "yarn clean && yarn build",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"fix:ts": "yarn lint:ts --fix && yarn lint:ts:spec --fix",
|
|
74
|
-
"flatten": "publish-flat -o flattened",
|
|
75
|
-
"lint": "yarn lint:ts && yarn lint:ts:spec && yarn lint:other",
|
|
76
|
-
"lint:other": "yarn prettier --list-different",
|
|
77
|
-
"lint:ts": "eslint --ignore-path .gitignore --ext .ts src/",
|
|
78
|
-
"lint:ts:spec": "eslint --ignore-path .gitignore --ext .ts --config .eslintrc.spec.json spec/",
|
|
79
|
-
"postversion": "node ../node_modules/publish-flat/cli-copy.js -i package.json -o ../package.json version",
|
|
80
|
-
"prettier": "prettier \"*.{json,md,yml}\"",
|
|
81
|
-
"release": "semantic-release",
|
|
43
|
+
"flatten": "node ../publish-flat/dist/cli.js -o flattened",
|
|
44
|
+
"postversion": "node ../publish-flat/dist/cli-copy.js -o flattened/package.json version",
|
|
82
45
|
"start": "ts-node src/cli.ts",
|
|
83
|
-
"test": "ts-node -P tsconfig.jasmine.json node_modules/.bin/jasmine"
|
|
46
|
+
"test": "ts-node -P tsconfig.jasmine.json ../../node_modules/.bin/jasmine"
|
|
84
47
|
},
|
|
85
|
-
"version": "3.1.
|
|
48
|
+
"version": "3.1.2"
|
|
86
49
|
}
|