-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.69 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
{
"name": "vue-auto-virtual-scroll-list",
"version": "0.3.0",
"description": "A vue (2.x) component for large lists with variable item height",
"author": "Cristóvão Trevisan <[email protected]>",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"start:docs": "webpack-dev-server --config docs/webpack.config.js",
"build:docs": "NODE_ENV=production webpack --config docs/webpack.config.js -p --progress --profile --colors",
"prepublish": "npm run build",
"build": "babel src --out-dir dist --ignore '**/*.test.js'",
"test:watch": "jest --watch",
"pretest": "eslint src",
"test": "jest --coverage --verbose --ci"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.4.5",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-vue": "^4.2.0",
"jest": "^24.8.0",
"vue": "^2.5.13",
"vue-template-compiler": "^2.5.13",
"vue-test-utils": "^1.0.0-beta.11",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"peerDependencies": {
"vue": "^2"
},
"jest": {
"transform": {
"^.+js$": "<rootDir>/node_modules/babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"homepage": "https://github.com/cristovao-trevisan/vue-auto-virtual-scroll-list"
}