This repository has been archived by the owner on Apr 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 230
/
package.json
67 lines (67 loc) · 1.84 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
64
65
66
67
{
"name": "vue2-datatable-component",
"description": "The best Datatable for Vue.js 2.x which never sucks",
"version": "2.3.1",
"main": "dist/min.js",
"module": "src/main.js",
"author": "Ken Berkeley <[email protected]>",
"files": [
"dist",
"locale",
"src"
],
"scripts": {
"start": "vue build --config build/examples.js",
"build": "npm run build:examples && npm run build:lib",
"build:examples": "vue build --config build/examples.js --prod",
"build:lib": "vue build --config build/lib.js --prod",
"prebuild": "npm run lint",
"lint": "eslint -f node_modules/eslint-friendly-formatter build/** examples/src/** locale/** src/** test/**",
"test": "ava",
"pretest": "npm run lint",
"doc": "docsify serve doc"
},
"repository": {
"type": "git",
"url": "https://github.com/OneWayTech/vue2-datatable.git"
},
"keywords": [
"vue",
"datatable",
"table"
],
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"ava": "^0.22.0",
"avoriaz": "^4.1.0",
"babel-polyfill": "^6.23.0",
"browser-env": "^3.2.0",
"clean-webpack-plugin": "^0.1.16",
"docsify-cli": "^4.1.10",
"eslint": "4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^3.13.0",
"jquery": "^3.2.1",
"localstorage-polyfill": "^1.0.1",
"mockjs": "^1.0.1-beta3",
"moment": "^2.18.1",
"p-immediate": "^2.1.0",
"require-extension-hooks": "^0.3.0",
"require-extension-hooks-babel": "^0.1.1",
"require-extension-hooks-vue": "^0.4.0",
"vue-cli": "2.8.2"
},
"ava": {
"require": [
"./test/.setup.js"
]
},
"license": "MIT"
}