-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.39 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
{
"author": "Adrian Jost <[email protected]> (https://adrianjost.dev)",
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/adrianjost/two-channel-picker/issues"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@vue/babel-preset-app": "^5.0.8",
"@vue/cli": "^5.0.8",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.5.13",
"@vue/eslint-config-prettier": "^9.0.0",
"babel-cli": "^6.26.0",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"sass-loader": "^16.0.4",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3",
"webpack": "^5.97.1"
},
"files": [
"dist/*",
"LICENSE",
"README.md"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "http://github.com/adrianjost/TwoChannelPicker",
"license": "MIT",
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"main": "dist/vue/TwoChannelPicker.umd.min.js",
"module": "dist/vue/TwoChannelPicker.common.js",
"name": "@adrianjost/two-channel-picker",
"peerDependencies": {
"vue": "^3.5.13"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"publishConfig": {
"access": "public"
},
"repository": "github:adrianjost/two-channel-picker",
"scripts": {
"build": "run-p build:*",
"build:demo": "npx vue-cli-service build --target lib --name DemoTwoChannelPicker ./src/DevUI.vue --mode production --dest dist/demo",
"build:helper": "cross-env BUILD_TARGET=helpers babel src/helpers/ --out-dir dist/helpers --ignore src/**/*.*.*",
"build:vue": "npx vue-cli-service build --target lib --name TwoChannelPicker ./src/TwoChannelPicker.vue --mode production --dest dist/vue",
"disabled:build:wc": "npx vue-cli-service build --target wc --inline-vue --name two-channel-picker ./src/TwoChannelPicker.vue --dest dist/wc",
"dev": "npx vue-cli-service serve",
"lint": "npx vue-cli-service lint",
"lint:ci": "npm run lint",
"test": "jest",
"test:update": "jest -u",
"test:watch": "npm run test --watchAll"
},
"version": "1.0.0-beta.2"
}