-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
30 lines (30 loc) · 1000 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
29
30
{
"name": "data-structure-and-algorithms",
"version": "1.0.0",
"description": "This repository holds solutions to my solutions to data structures and algorithmic problems.",
"main": "",
"scripts": {
"test": "jest --coverage",
"start": "clear && npm test ./leetcode/sean-prashad/javascript/28-productExceptSelf.test.js",
"start-js-tree": "clear && node ./data-structures/binary-trees/javascript/createNodeClass.test.js",
"run-py": "clear && python ./data-structures/binary-trees/python/1-createNodeClass.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blossom-babs/leetcode-challenges.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/blossom-babs/leetcode-challenges/issues"
},
"homepage": "https://github.com/blossom-babs/leetcode-challenges#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1"
},
"dependencies": {
"js-ord": "^4.1.1"
}
}