forked from EnergySage/es-ds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.6 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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@energysage/es-vue-base",
"version": "2.2.0",
"private": false,
"description": "",
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"prebuild": "rimraf ./dist",
"test": "jest",
"test:update": "jest --updateSnapshot",
"lint": "npm run lint:js && npm run lint:style",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path ../.gitignore .",
"lint:style": "stylelint \"**/*.{scss,sass,vue}\" --ignore-path ../.gitignore",
"lintfix": "npm run lint:js -- --fix && npm run lint:style -- --fix"
},
"main": "dist/es-vue-base.cjs.min.js",
"module": "dist/es-vue-base.esm.min.js",
"browser": "dist/es-vue-base.umd.min.js",
"unpkg": "dist/es-vue-base.umd.min.js",
"files": [
"dist",
"nuxt",
"src"
],
"prettier": "eslint-config-energysage/prettier",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@energysage/es-bs-base": "^2.2.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-image": "^3.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@testing-library/jest-dom": "^5.16.4",
"@vue/babel-preset-app": "^5.0.8",
"@vue/test-utils": "^1.3.0",
"autoprefixer": "^9.8.8",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.0.3",
"bootstrap-vue": "^2.23.1",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-config-energysage": "^2.2.3",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-strict-vue": "^1.0.0",
"eslint-plugin-vue": "^9.9.0",
"eslint-plugin-vuejs-accessibility": "^2.1.0",
"html-truncate": "^1.2.2",
"jest": "^29.0.3",
"jest-axe": "^7.0.1",
"jest-environment-jsdom": "^29.0.3",
"jest-extended": "^4.0.0",
"jest-transform-stub": "^2.0.0",
"lodash.debounce": "^4.0.8",
"minimist": "^1.2.5",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.3",
"prettier-eslint": "^15.0.1",
"rimraf": "^5.0.0",
"rollup": "^2.52.8",
"rollup-plugin-visualizer": "^5.7.1",
"rollup-plugin-vue": "^5.1.9",
"sass": "^1.66.1",
"stylelint": "^14.16.1",
"vue": "^2.7.16",
"vue-jest": "^3.0.7",
"vue-slider-component": "^3.2.20",
"vue-template-compiler": "^2.7.14",
"vuelidate": "^0.7.7"
},
"peerDependencies": {
"@energysage/es-bs-base": "*",
"bootstrap-vue": "^2.22.0",
"html-truncate": "^1.2.2",
"lodash.debounce": "^4.0.8",
"vue": "^2.7.14",
"vue-slider-component": "^3.2.18",
"vue-template-compiler": "^2.7.14",
"vuelidate": "^0.7.7"
},
"engines": {
"node": ">=12"
},
"license": "MIT",
"npmClient": "npm",
"sideEffects": false,
"gitHead": "5fb889dfdb169c5995f96ec110a67331d58e9e92",
"bugs": {
"url": "https://github.com/EnergySage/es-ds/issues"
},
"homepage": "https://github.com/EnergySage/es-ds",
"repository": {
"type": "git",
"url": "git@github.com:EnergySage/es-ds.git"
},
"dependencies": {
"path": "^0.12.7",
"vue-the-mask": "^0.11.1"
}
}