-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 883 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 883 Bytes
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
{
"name": "sorting",
"version": "1.0.0",
"description": "Web for sorting algorithms.",
"main": "index.js",
"scripts": {
"dev": "parcel src/index.html",
"prebuild": "del-cli ./dist ./.cache",
"deploy": "gh-pages -d dist",
"clean": "del-cli ./dist ./.cache",
"build": "parcel build src/index.html --public-url ./ --no-source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PSDat123/Sorting.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PSDat123/Sorting/issues"
},
"homepage": "https://psdat123.github.io/Sorting/",
"devDependencies": {
"del-cli": "^3.0.1",
"eslint": "^7.16.0",
"parcel-bundler": "^1.12.4",
"sass": "^1.32.5"
},
"browserslist": [
"since 2017-06"
],
"dependencies": {
"gh-pages": "^3.1.0",
"object-hash": "^2.1.1"
}
}