-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 845 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "jls_coding_dojo",
"version": "1.0.0",
"description": "This is a repository for coding dojo excersises. The main goal is to practice problem solving and coding skills. Solutions can focus on a certain metric like efficiency, compactness, creativitiy, etc.",
"main": "src/main.js",
"type": "module",
"scripts": {
"start": "node src/main.js",
"start:custom": "node src/main.js --excersise=2 --iterations=1000 --filter=def,nes --debugLogs=true",
"start:quick": "node src/main.js -e=2 -i=10 --f=def -d=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fdendorfer/jls_coding_dojo.git"
},
"author": "def",
"license": "MIT",
"bugs": {
"url": "https://github.com/fdendorfer/jls_coding_dojo/issues"
},
"homepage": "https://github.com/fdendorfer/jls_coding_dojo#readme"
}