-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "data-structures-algorithms-javascript",
"version": "1.0.0",
"description": "This repository contains popular data structures and algorithms implemented in Javascript.",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/**/* --fix",
"test": "jest",
"deploy": "npm run lint && npm run test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rahulSlash/data-structures-algorithms-javascript.git"
},
"keywords": [
"algorithms",
"data-structures",
"computer-science",
"cs",
"javascript",
"js-algorithms",
"js-datastructures",
"javascript-algorithms",
"javascript-datastructures",
"js-interview",
"js-interview-preparation",
"interview-questions"
],
"author": "Rahul Gupta",
"license": "MIT",
"bugs": {
"url": "https://github.com/rahulSlash/data-structures-algorithms-javascript/issues"
},
"homepage": "https://github.com/rahulSlash/data-structures-algorithms-javascript#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"babel-jest": "^26.3.0",
"eslint": "^7.10.0",
"eslint-config-google": "^0.14.0",
"husky": "^4.3.0",
"jest": "^26.4.2"
}
}