forked from ratiw/vue-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "vuetable",
"version": "1.2.0",
"description": "vue.js table component that will automatically request JSON data from server and display them nicely in HTML table with swap-able/extensible pagination component",
"main": "src/vue-table.js",
"dependencies": {
"vue": "~1.0.21",
"vue-resource": "~0.7"
},
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserify": {
"transform": [
"vueify"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ratiw/vue-table.git"
},
"keywords": [
"vue",
"vuejs",
"table",
"component",
"json",
"pagination"
],
"author": "Rati Wannapanop <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ratiw/vue-table/issues"
},
"homepage": "https://github.com/ratiw/vue-table#readme",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-runtime": "^6.9.2",
"browserify": "13.0.1",
"uglify-js": "^2.6.2",
"vueify": "^8.5.4",
"watchify": "3.7.0"
}
}