-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "algorithm",
"version": "1.0.0",
"description": "记录算法学习的仓库",
"main": "index.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "jest --coverage",
"test:sp": "jest -t lix",
"lint": "eslint --ext .ts src __test__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/originalix/algorithm.git"
},
"keywords": [
"algorithm",
"typescript"
],
"author": "Lix",
"license": "MIT",
"bugs": {
"url": "https://github.com/originalix/algorithm/issues"
},
"homepage": "https://github.com/originalix/algorithm#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/jest": "^26.0.22",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.14.1",
"assert": "^2.0.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-webpack-plugin": "^2.4.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"typescript": "^4.1.3",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@types/lodash": "^4.14.168",
"lodash": "^4.17.21"
}
}