-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.81 KB
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": "vue-table",
"version": "1.0.0",
"description": "vue table",
"main": "index.js",
"scripts": {
"build": "npm run build:browser && npm run build:es && npm run build:umd",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"prepublishOnly": "npm run lint && npm run build",
"lint": "eslint --ext .js,.vue src",
"dev": "cross-env NODE_ENV=developent rollup --config build/rollup.config.es.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAKER-A/vue-table.git"
},
"keywords": [
"vue2.0",
"vue",
"vue-table",
"table"
],
"author": "lisheng",
"license": "MIT",
"bugs": {
"url": "https://github.com/FAKER-A/vue-table/issues"
},
"homepage": "https://github.com/FAKER-A/vue-table#readme",
"devDependencies": {
"autoprefixer": "^9.4.10",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^5.15.1",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-vue": "^5.2.2",
"node-sass": "^4.11.0",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-vue": "^4.7.2",
"vue": "^2.6.8",
"vue-eslint-parser": "^6.0.3",
"vue-template-compiler": "^2.6.8"
}
}