-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
57
58
59
60
61
62
63
{
"name": "js-memory",
"version": "0.0.2",
"description": "Analyze js memory",
"main": "./dist/index.js",
"scripts": {
"dev": "vuepress dev vuepress",
"docs:dev": "vuepress dev vuepress",
"docs:build": "vuepress build vuepress",
"precommit": "node_modules/.bin/lint-staged",
"build": "node_modules/.bin/tsc"
},
"husky": {
"hooks": {
"pre-commit": "node_modules/.bin/lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"node_modules/.bin/eslint --fix --ext .ts src",
"git add"
],
"vuepress/**/*": [
"node_modules/.bin/eslint --fix --ext=ts,vue vuepress",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/linjinze999/js-memory.git"
},
"keywords": [
"js",
"momory"
],
"author": "linjinze",
"license": "MIT",
"bugs": {
"url": "https://github.com/linjinze999/js-memory/issues"
},
"homepage": "https://linjinze999.github.io/js-memory/",
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"async-validator": "1.11.5",
"echarts": "^5.2.2",
"element-ui": "^2.15.9",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.3.0",
"husky": "4.3.8",
"lint-staged": "^13.0.3",
"node-sass": "4.14.1",
"sass-loader": "7.3.1",
"ts-loader": "8.2.0",
"typescript": "4.5.2",
"vuepress": "^1.9.7",
"vuex": "3.6.2"
}
}