-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 864 Bytes
/
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
{
"name": "pie-slice-problem",
"version": "1.0.0",
"description": "pie slice problem generator",
"main": "index.js",
"scripts": {
"test": "jest --watchAll --verbose",
"exam": "node . --colors=300 --slices=100",
"project": "node . --colors=90 --slices=30 --repeats=3",
"start": "python3 py/main.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/navarrojandg/pie-slice-problem.git"
},
"keywords": [
"pie",
"slice",
"problem",
"generator"
],
"author": "jan derrick navarro",
"license": "ISC",
"bugs": {
"url": "https://github.com/navarrojandg/pie-slice-problem/issues"
},
"homepage": "https://github.com/navarrojandg/pie-slice-problem#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.1"
},
"dependencies": {
"yargs": "^16.1.0"
}
}