-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.16 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
68
69
70
71
72
{
"name": "@acva/infinite-scroller-vue2",
"version": "1.1.0",
"files": [
"dist"
],
"main": "./dist/infinite-scroller-vue2.umd.js",
"module": "./dist/infinite-scroller-vue2.es.js",
"exports": {
".": {
"import": "./dist/infinite-scroller-vue2.es.js",
"require": "./dist/infinite-scroller-vue2.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"lint": "eslint 'src/**' --max-warnings=0",
"lint:fix": "eslint --fix 'src/**'",
"lint:css": "stylelint 'src/**/*.(vue|css|scss)' --max-warnings=0",
"test:updateSnapshots": "jest -u",
"test:watch": "jest --watch",
"test:watchCoverage": "jest --watch --coverage",
"test:coverage": "jest --coverage",
"semantic-release": "semantic-release"
},
"dependencies": {
"vue": "^2.6.14"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/git": "^10.0.1",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/test-utils": "^1.3.0",
"@vue/vue2-jest": "^28.0.1",
"babel-jest": "^28.1.3",
"eslint": "^8.23.0",
"eslint-plugin-vue": "^9.4.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.0.2",
"postcss-html": "^1.5.0",
"sass": "^1.54.9",
"semantic-release": "^19.0.5",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint": "^14.11.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-scss": "^4.3.0",
"vite": "^2.9.15",
"vite-plugin-stylelint": "^4.1.3",
"vite-plugin-vue2": "^2.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acv-auctions/infinite-scroller-vue2.git"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"description": "> An infinite scroller component implemented in Vue.js 2.",
"bugs": {
"url": "https://github.com/acv-auctions/infinite-scroller-vue2/issues"
},
"homepage": "https://github.com/acv-auctions/infinite-scroller-vue2#readme",
"author": "ACV Auctions"
}