-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 992 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
{
"name": "algorithms",
"version": "1.0.0",
"description": "This repository presents the Javascript code implementation of the provided Algorithms and Data Structures from William Fiset @ [https://github.com/williamfiset/Algorithms](https://github.com/williamfiset/Algorithms)",
"main": "index.js",
"scripts": {
"test": "jest --watchAll --no-cache --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngantxnguyen/Algorithms.git"
},
"author": "Ngan Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngantxnguyen/Algorithms/issues"
},
"homepage": "https://github.com/ngantxnguyen/Algorithms#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@types/jest": "^26.0.14",
"jest": "^26.4.2"
}
}