-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.84 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
{
"name": "goaldriventest",
"version": "1.0.0-alpha",
"description": "Ask AI to test your website with a specific goal",
"parserOptions": {
"sourceType": "module"
},
"type": "module",
"bin": {
"goaldriventest": "build/GoalDrivenTest.js"
},
"scripts": {
"build": "npm run clean && npx tsc && chmod +x build/GoalDrivenTest.js",
"tsx": "npx tsx src/GoalDrivenTest.ts",
"clean": "rm -rf build",
"distclean": "rm -rf node_modules build package-lock.json",
"prettier:check": "npx prettier --check ",
"prettier:write": "npx prettier --write "
},
"scriptsComments": {
"build": "Build the project",
"tsx": "Use tsx to run GoalDrivenTest.ts directly. Pass it arguments after --. For example: npm run tsx -- --help",
"clean": "Remove build directory",
"distclean": "Remove build directory and node_modules",
"prettier:check": "Check if files are formatted according to prettier. Add directories or files as arguments. For example: npm run prettier:check src",
"prettier:write": "Format files according to prettier. Add directories or files as arguments. For example: npm run prettier:write src"
},
"repository": {
"type": "git",
"url": ".git"
},
"author": "M. Elhorst <m.elhorst@vpro.nl> www.vpro.nl",
"license": "MIT",
"files": [
"*.json",
"src",
"examples"
],
"keywords": [
"test",
"AI",
"CLI",
"automation",
"goaldriven",
"goaldriventest",
"goal-driven-test"
],
"dependencies": {
"argparse": "^2.0.1",
"luxon": "^3.4.4",
"openai": "^4.17.4",
"puppeteer": "^21.5.1",
"sharp": "^0.32.6"
},
"devDependencies": {
"@types/argparse": "^2.0.14",
"@types/luxon": "^3.3.7",
"@types/node": "^20.10.4",
"eslint": "latest",
"eslint-config-prettier": "latest",
"prettier": "latest",
"typescript": "^5.3.3"
}
}