-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.3 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
{
"name": "dawg-unscramble",
"version": "1.0.0",
"description": "UnScramble given letters to create real words",
"main": "index.js",
"scripts": {
"eslint": "eslint --ext .js src/js/UnScramble.js src/js/Base64ToBinReader.js",
"clint": "lint src/c/unscramble.c",
"lint": "npm run eslint && npm run clint",
"devServer:Chrome": "webpack serve --open-app-name \"Google Chrome\"",
"devServer:Firefox": "webpack serve --open-app-name \"Firefox\"",
"devServer": "webpack serve ",
"start": "npm run devServer",
"build:prod": "webpack --mode production",
"build:dev": "webpack --mode development",
"cbuild": "mkdir -p bin && gcc src/c/UnScramble.c -o bin/UnScramble",
"build:SOWPODS_E": "bin/UnScramble -d 0 -c src/datafiles/Lexicon.txt -o /tmp/DAWG_SOWPODS_English.dat",
"build:dat64_E": "node tools/scripts/DAWGDatToBin64JSVar.js",
"build:all": "npm run cbuild && npm run build:SOWPODS_E && npm run build:dat64_E && npm run build",
"build": "npm run build:dev",
"watch": "webpack --mode development --watch",
"startBuild": "npm run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ztalbot2000/DAWG-UnScramble.git"
},
"keywords": [
"UnScramble",
"Scramble",
"letters",
"letter",
"Word",
"Words",
"Wordle",
"Dictionary"
],
"author": "John Talbot",
"license": "MIT",
"bugs": {
"url": "https://github.com/ztalbot2000/DAWG-UnScramble/issues"
},
"homepage": "https://github.com/ztalbot2000/DAWG-UnScramble#readme",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@types/jquery": "^3.5.16",
"@types/mocha": "^10.0.1",
"@web/dev-server": "^0.1.35",
"@web/test-runner-browserstack": "^0.5.1",
"@web/test-runner-playwright": "^0.9.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"buffer": "^6.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"html-webpack-plugin": "^5.5.0",
"lint": "^0.8.19",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}