-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 923 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 923 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
{
"name": "data-structures-algorithms",
"version": "0.0.2",
"description": "Data structures and algorithms in JavaScript",
"main": "index.js",
"scripts": {
"test": "jest --logHeapUsage --verbose --watch",
"lint": "eslint src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbkly/Data-Structures-Algorithms.git"
},
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/jbkly/Data-Structures-Algorithms/issues"
},
"homepage": "https://github.com/jbkly/Data-Structures-Algorithms#readme",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "24.8.0",
"prettier": "1.18.2"
}
}