-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 906 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 906 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
37
38
{
"name": "datastructure-algorithm",
"version": "1.0.0",
"description": "This repository contains JavaScript based examples of many popular algorithms and data structures.",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html --open",
"build": "parcel build src/index.html --no-source-maps"
},
"customDistStructure": {
"config": {
".js": "js",
".css": "css",
".scss": "scss",
"images": [
".jpg",
".png",
".svg"
],
".fileExtension": "folder/in/dist",
"folder/in/dist": [
".file",
".extensions"
]
},
"options": {
"development": false
}
},
"author": "Vimal Thanikachalam",
"license": "ISC",
"devDependencies": {
"node-forge": "^0.10.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-custom-dist-structure": "^1.1.16",
"sass": "^1.32.8"
}
}