-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 994 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 994 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
{
"name": "data-structures-algorithms-js",
"version": "1.0.0",
"description": "A library of data structure and algorithm implementations in javascript",
"main": "index.js",
"scripts": {
"test": "babel-tape-runner test/**/*-test.js | faucet",
"build": "webpack",
"local": "serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hillc5/DataStructuresAlgorithms.git"
},
"keywords": [
"data-structures",
"algorithms"
],
"author": "hillc5",
"license": "ISC",
"bugs": {
"url": "https://github.com/hillc5/DataStructuresAlgorithms/issues"
},
"homepage": "https://github.com/hillc5/DataStructuresAlgorithms#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-tape-runner": "^3.0.0",
"core-js": "^3.28.0",
"faucet": "^0.0.4",
"serve": "^14.2.0",
"tape": "^4.6.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}