-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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": "codewars-runner",
"version": "1.0.0",
"description": "Automatically generates test cases for CodeWars katas",
"main": "index.js",
"scripts": {
"test:create": "node new.js",
"test:watch": "jest --verbose --watch .",
"test": "npm-run-all \"test:create -- {1}\" test:watch --",
"context": "gpt-project-context -i '**/*.js,README.md,package.json' -e '**/node_modules/**,**/dist/**'"
},
"keywords": [
"codewars",
"kata",
"test",
"generator"
],
"author": "Vladimir Lazić <[email protected]> (https://vlazic.com/)",
"license": "MIT",
"dependencies": {
"axios": "0.24.0"
},
"devDependencies": {
"@codewars/test-compat": "1.1.0",
"concurrently": "6.3.0",
"jest": "27.3.1",
"npm-run-all": "4.1.5",
"playwright": "1.16.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlazic/codewars-runner.git"
},
"bugs": {
"url": "https://github.com/vlazic/codewars-runner/issues"
},
"homepage": "https://github.com/vlazic/codewars-runner#readme"
}