-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "smart-table-vue",
"version": "0.2.0",
"description": "smart table binding for vuejs",
"main": "./dist/smart-table-vue",
"jsnext:main": "./index.js",
"module": "./index.js",
"directories": {
"example": "example"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@vue/server-test-utils": "^1.0.3",
"@vue/test-utils": "^1.0.3",
"core-js": "^2.6.11",
"js-beautify": "<1.11",
"puppeteer-core": "^2.0.0",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^5.0.1",
"smart-table-core": "^3.0.7",
"tap-set-exit": "^1.1.1",
"vue": "^2.6.12",
"vue-server-renderer": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"which": "^2.0.2",
"zora": "^3.1.8"
},
"scripts": {
"build": "rollup -c rollup/build.js && rollup -c rollup/cdn.js",
"build:example": "rollup -c ./example/rollup.config.js",
"test": "npm run test:ssr && npm run test:spa",
"test:spa": "rollup -c test/spa/rollup.config.js && node test/spa/runner.js | tap-set-exit",
"test:ssr": "rollup -c test/ssr/rollup.config.js && node test/ssr/bundle.js | tap-set-exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-table/smart-table-vue.git"
},
"keywords": [
"smart-table",
"vuejs",
"vue",
"datagrid",
"table",
"grid"
],
"author": "Laurent Renard",
"license": "MIT",
"bugs": {
"url": "https://github.com/smart-table/smart-table-vue/issues"
},
"homepage": "https://github.com/smart-table/smart-table-vue#readme"
}