-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 791 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 791 Bytes
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
{
"name": "wordle-solver",
"version": "0.0.1",
"description": "A tool to solve Wordle puzzles",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"test": "mocha -r ts-node/register ./test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiprobinson/wordle-solver.git"
},
"author": "Kip Robinson",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kiprobinson/wordle-solver/issues"
},
"homepage": "https://github.com/kiprobinson/wordle-solver#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}