-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 915 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 915 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
39
{
"name": "algorithms-js",
"version": "0.1.0",
"description": "Implementation of several algorithms in javascript",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vandercijr/algorithms-js.git"
},
"keywords": [
"algorithm",
"sort",
"djakstra",
"bubblesort",
"quicksort",
"derivative",
"blacknscholes"
],
"author": "Vanderci C Junior",
"license": "ISC",
"bugs": {
"url": "https://github.com/vandercijr/algorithms-js/issues"
},
"homepage": "https://github.com/vandercijr/algorithms-js#readme",
"files": [
"src/list"
],
"devDependencies": {
"eslint": "^6.6.0",
"jest": "^23.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
}
}