-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 3.27 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "v-aspect-ratio",
"version": "2.0.1",
"private": false,
"description": "Aspect ratio directive for Vue.js",
"keywords": [
"aspect-ratio",
"vue"
],
"homepage": "https://github.com/andrewvasilchuk/v-aspect-ratio#readme",
"bugs": {
"url": "https://github.com/andrewvasilchuk/v-aspect-ratio/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewvasilchuk/v-aspect-ratio.git"
},
"license": "MIT",
"author": "Andrew Vasilchuk <[email protected]>",
"main": "dist/v-aspect-ratio.js",
"unpkg": "dist/v-aspect-ratio.min.js",
"module": "dist/v-aspect-ratio.esm.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"vetur"
],
"scripts": {
"build": "rimraf dist/* && rollup -c build/rollup.config.prod.ts && npm run build:declaration",
"build:declaration": "tsc ./src/index.ts --outDir ./dist --declaration --emitDeclarationOnly",
"dev": "rollup -c build/rollup.config.dev.ts --watch",
"fmt": "npm run fmt:prettier && npm run fmt:package-json",
"fmt:package-json": "sort-package-json",
"fmt:prettier": "prettier --write ./**/*.{js,ts,css,md}",
"lint": "npm run lint:editorconfig && npm run lint:package-json && npm run lint:prettier && npm run lint:eslint && npm run lint:remark",
"lint:editorconfig": "editorconfig-checker",
"lint:eslint": "eslint --ext .js,.ts ./",
"lint:package-json": "sort-package-json --check",
"lint:prettier": "prettier --check ./**/*.{js,ts,css,md}",
"lint:remark": "remark .",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-umd": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@types/lodash.flatten": "^4.4.6",
"@types/randomcolor": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@vue/test-utils": "^1.3.0",
"core-js": "^3.19.2",
"editorconfig-checker": "^4.0.2",
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^26.1.5",
"husky": "^7.0.4",
"jest": "^28.0.2",
"jest-environment-jsdom": "^28.0.2",
"lint-staged": "^12.1.2",
"nuxt": "^2.15.8",
"prettier": "^2.5.1",
"randomcolor": "^0.6.2",
"remark-cli": "^10.0.1",
"remark-lint": "^9.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"sort-package-json": "^1.53.1",
"ts-jest": "^28.0.0-next.2",
"typescript": "^4.5.2",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14"
},
"peerDependencies": {
"vue": "^2.6.x"
},
"vetur": {
"attributes": "vetur/vetur-attributes.json"
}
}