-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 970 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
31
32
33
34
35
36
37
{
"name": "algorithm-and-data-structure",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "jest",
"structure": "jest ./src/Structure",
"algorithm": "jest ./src/Algorithm",
"practices": "jest ./src/Practices",
"preinstall": "npx pm-keeper pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugewilliam/Algorithm-and-Data-Structure.git"
},
"keywords": [
"algorithm"
],
"author": "liwuhou",
"license": "ISC",
"bugs": {
"url": "https://github.com/hugewilliam/Algorithm-and-Data-Structure/issues"
},
"homepage": "https://github.com/hugewilliam/Algorithm-and-Data-Structure#readme",
"dependencies": {
"@types/jest": "^27.0.2",
"typescript": "^4.3.5"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"ts-node": "^10.4.0"
}
}