-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 954 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",
"version": "1.0.0",
"description": "数据结构算法(javascript描述)",
"main": ".js",
"scripts": {
"dev": "nodemon -w ./ --exec babel-node main.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangjieCode/algorithm.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wangjieCode/algorithm/issues"
},
"homepage": "https://github.com/wangjieCode/algorithm#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"babel-jest": "^27.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"esno": "^0.16.3",
"jest": "^27.0.3",
"nodemon": "^2.0.7"
},
"dependencies": {
"@babel/node": "^7.14.2",
"@types/jest": "^26.0.23",
"babel-node": "^0.0.1-security",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}