forked from TheAlgorithms/JavaScript
-
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) · 934 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 934 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
40
{
"name": "javascript",
"version": "1.0.0",
"description": "A repository for All algorithms implemented in Javascript (for educational purposes only)",
"main": "",
"scripts": {
"test": "jest --no-cache"
},
"author": "TheAlgorithms",
"license": "GPL-3.0",
"dependencies": {
<<<<<<< master
"@babel/core": "^7.13.14",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"jsdom": "^16.5.2",
"node": "^14.16.0",
"node-fetch": "2.6.1"
=======
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"jsdom": "^16.3.0",
"node": "^14.13.1",
"node-fetch": "2.6.1",
"atob": "2.1.2"
>>>>>>> master
},
"standard": {
"env": [
"jest"
]
},
"devDependencies": {
"babel-jest": "^26.6.3",
"doctest": "^0.17.1",
"jest": "^26.6.3",
"standard": "^14.3.4"
}
}