-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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": "visualize-sorting-methods",
"version": "1.0.0",
"engines": {
"node": "12.x"
},
"description": "Javascript Canvas Visualize different sorting methods",
"main": "index.js",
"scripts": {
"clean": "rm -r dist",
"start": "parcel src/index.html --open",
"parcel-build": "parcel build src/index.html --no-source-maps",
"build": "npm run clean && npm run parcel-build",
"build:github": "npm run parcel-build",
"run:build": "http-server dist -o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fearless23/Visualize_Sorting_Methods.git"
},
"keywords": [
"Canvas",
"HTML",
"Javascript",
"Sorting"
],
"author": "Jaspreet Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/fearless23/Visualize_Sorting_Methods/issues"
},
"homepage": "https://github.com/fearless23/Visualize_Sorting_Methods#readme",
"devDependencies": {
"parcel-bundler": "^1.12.4",
"typescript": "^3.7.4"
},
"dependencies": {
"bulma": "^0.8.0"
}
}