-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "bootstrap-table-examples",
"version": "1.24.0",
"description": "bootstrap-table-examples",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/wenzhixin/bootstrap-table-examples.git"
},
"author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wenzhixin/bootstrap-table-examples/issues"
},
"homepage": "https://github.com/wenzhixin/bootstrap-table-examples",
"scripts": {
"lint:js": "eslint .",
"prelint:vue": "./tools/lint.sh --pre",
"lint:vue": "eslint .",
"postlint:vue": "./tools/lint.sh --post",
"lint:editor": "editorconfig-checker",
"lint": "run-s lint:*",
"build": "babel utils/natural-sorting/src -d utils/natural-sorting/dist",
"serve": "node server/app.js"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"bootstrap-table": "^1.24.0",
"editorconfig-checker": "^6.0.0",
"eslint": "^9.17.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.32.0",
"getopts": "^2.3.0",
"globals": "^15.14.0",
"npm-run-all2": "^7.0.2"
},
"dependencies": {
"express": "^5.0.1"
}
}