-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 943 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
36
37
38
39
40
{
"name": "sorting-algo-ts",
"version": "1.1.5",
"description": "Sort multiple types of data structures using Bubble Sort.",
"main": "build/cli/index.js",
"bin": "build/cli/index.js",
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"bubble-sort",
"typescript",
"ts",
"algorithm",
"sorting"
],
"repository": "https://github.com/NightClover-code/sorting-algorithm",
"author": "Achraf Elmouhib <[email protected]>",
"license": "MIT",
"scripts": {
"serve:build": "tsc -w",
"serve:run": "nodemon build/index.js",
"start:build": "tsc",
"start": "node build/cli/index.js start",
"prepublishOnly": "tsc"
},
"dependencies": {
"commander": "^7.2.0",
"prompt-radio": "^1.2.1",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"@types/node": "^15.12.2",
"concurrently": "^6.2.0",
"nodemon": "^2.0.7"
}
}