-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "wordle-clone",
"version": "1.4.0",
"description": "A clone of the popular Wordle game.",
"main": "index.js",
"bin": {
"wordle": "./cli.js",
"wordle-clone": "./cli.js"
},
"scripts": {
"dev": "sh ./scripts/run_dev_server.sh HTTP LOCAL",
"devs": "sh ./scripts/run_dev_server.sh HTTPS LOCALS",
"build": "sh ./scripts/build.sh",
"preview": "serve ./build",
"test": "NODE_ENV=test mocha",
"test-ci": "mocha test --reporter mocha-junit-reporter --reporter-options mochaFile=./results/unit-test-results.xml",
"cypress": "cypress"
},
"keywords": [],
"author": "James Cote (Coteh)",
"license": "MIT",
"devDependencies": {
"cypress": "^13.8.1",
"cypress-real-events": "^1.12.0",
"cypress-wait-until": "^1.7.2",
"marked": "^15.0.6",
"mocha": "^10.4.0",
"mocha-junit-reporter": "^2.2.1",
"mock-fs": "^5.2.0",
"serve": "^14.2.3",
"sinon": "^15.2.0"
},
"dependencies": {
"@folder/xdg": "^4.0.1",
"clipboardy": "^3.0.0",
"commander": "^12.1.0"
}
}